import random

##First Name: Jane, Fred, Pat, Sean
##Descriptive phrase: "the conquerer", "the great", "the impaler"
##Type: Hero, Villan

name_list = ['Jane', 'Fred', 'Pat', 'Sean']
phrase_list = ["the conquerer", "the great", "the impaler"]
type_list = ['Hero', 'Villan']


num = 0
while num < 10:
    print(random.choice(name_list) + ' ' + random.choice(phrase_list) +
          ' is a ' + random.choice(type_list))
    num += 1
