Python en reprise aléatoire
from random import choice
foods = ["eggs", "ham", "cheese", "potatoes", "hash browns"]
randfood = random.choice(foods)
Thankful Tiger
from random import choice
foods = ["eggs", "ham", "cheese", "potatoes", "hash browns"]
randfood = random.choice(foods)