728x90
#아무거나 주세요
#아무거나 3개 주세요
from random import *
random_num = range(0, 10)
menu = ["chicken", "muffin", "cookie", "sandwiches", "salads", "ice cream", "meat", "vitamin flusher", "codak", "pizza"]
random_num = list(random_num)
shuffle(random_num)
in_number = sample(random_num, 3)
choicesss = [menu[int(in_number[0])], menu[int(in_number[1])], menu[int(in_number[2])]]
chossess = str(choicesss[0]) + ", " + str(choicesss[1]) + ", " + str(choicesss[2])
print(chossess, "주세요")
728x90
'호그와트' 카테고리의 다른 글
그거면 충분한가? (0) | 2022.10.26 |
---|---|
alphabeauty.py (0) | 2022.10.25 |
치킨 한 뚝배기 하실라예~? (0) | 2022.10.25 |
스시는 맛있어요 (0) | 2022.10.25 |
lazy한 주인장 (2) | 2022.10.24 |