random

import random

random.seed()

one_of = random.choice(['vinni', 'rocky', 'willy', 'syndie'])

hero_lst = ['llama', 'buggie', 'homster', 'shiny', one_of]
random.shuffle(hero_lst)

Last updated