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:
    randomnameidx = random.randint(0,3)
    randomphraseidx = random.randint(0,2)
    randomtypeidx = random.randint(0,1)

    print(name_list[randomnameidx] + ' ' + phrase_list[randomphraseidx] +
          ' is a ' + type_list[randomtypeidx])
    num += 1

