Hello everyone im new here and new to python. Im working on some Python exercises I found online and am stuck on what I am doing wrong. Im trying to learn and teach myself about if and else statements. Here is my code.
weight = (float(input("How much does your suitcase weigh? "))
if weight > 50:
print("There is a $25 fee for a luggage that heavy.")
print("Thank you for your buisness. ")
input()
I am getting an invalid syntax error after 50: and not sure why. Can anyone briefly explain what im doing wrong?
Thank you for your time.