16 lines
492 B
Python
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
|