import random
print"Wellcome to the Mali Chef restaurant!!"
menu = ["Meal_1, Meal_2, Meal_3, Meal_4"]
print"On todays menu is:",menu
print "Choose which meal would you like to take: "
secure_random = random.SystemRandom()
print(secure_random.choice(menu))
How to write a code so that a user can choose meal by pushing a button on keyboard?