import random
options = ["치킨", "김밥", "국밥", "돈가스", "제육덮밥", "김치찌개", "떡국"]
def today_menu():
menu = random.choice(options)
return menu
today_choice_menu = today_menu()
print("오늘 점식 메뉴는 {0} 입니다." .format(today_choice_menu))
Output
오늘 점식 메뉴는 떡국 입니다.
No comments:
Post a Comment