hello,

I keep getting a syntax error. Could you please explain why that happens and 
how to correct it. 


def main ():
    print( "Welcome to Gonzo Burger!")
    order= int(input("Enter 1 if you want a hamburger,\
    or 2 if you want a cheeseburger:" ))
    if order == 1 :
               print("order: 1")
    else:
               print("Order: 2")

    drink=int(input("Thank you! Next, enter a 1 if you want a Coke,\
    or a 2 if you want a Sprite:")
    if drink == 1 :
              print("Order: 1")
    else:
              print("Order: 2")

    print("Thank you! You ordered:")
    if order == 1:
              print("- Hamburger")
    else:
              print("- Cheeseburger")
    if drink == 1 :
              print("- Coke")
    else:
              print("- Sprite")

main ()
                    

 

-Jackie
p.s: the error happens in the second if statement.
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to