lunch = ["된장찌개", "김치찌개", "김치찜", "돈까스"]
while True:
print(lunch)
item = input("음식을 추가 해주세요 : ")
if item == "q":
break
else:
lunch.append(item)
print(lunch)
set_lunch = set(lunch)
점심 먹게될 그날을 향하여
lunch = ["된장찌개", "김치찌개", "김치찜", "돈까스"]
while True:
print(lunch)
item = input("음식을 추가 해주세요 : ")
if item == "q":
break
else:
lunch.append(item)
print(lunch)
set_lunch = set(lunch)
점심 먹게될 그날을 향하여
댓글 0