The code appears to have an indent error but I can’t seem to find it. Can anyone help? I would really appreciate it!
# Define your functions
def coffee_bot():
print("welcome to the cafe")
def get_size():
res = input("What size drink can I get for you? \n[a] Small \n[b] Medium \n[c] Large \n")
def print_message():
print("I am sorry, I didn't understand your selection. Please enter the corresponding letter for your response.")
if res=='a':
return "Small"
elif res =="b":
return "Medium"
elif res == "c":
return "Large"
else:
print_message()
return get_size()
size = get_size()
print(size)
# Call
coffee_bot()