This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

16 lines
492 B
Python

def cafeMenu(x):
print('Cafe LUT Lahti: ', '\n1.Black coffee', '\n2.Milk coffee',
'\n3.Hot chocolate', '\n4.Cappuccino', '\n5.No order exit')
if x == 1:
print('You have ordered Black coffee')
elif x == 2:
print('You have ordered Milk coffee')
elif x == 3:
print('You have ordered Hot chocolate')
elif x == 4:
print('You have ordered Cappuccino')
elif x == 5:
print("You didn't order anything")
else:
print