import random def headTails(): listHT = ["Heads", "Tails"] print(random.choice(listHT)) headTails()