Jan 14, 2023

파이썬을 활용한 오늘 메뉴 선택 프로그램 (Choosing a today's memu in Python)

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