The most common answer:
user_name = input(“What is your name?:”)
reservation_name = “Eva”
print (“Name:” + user_name)
if user_name == reservation_name:
print (“Right this way!”)
else:
print (“Sorry, we don’t have a reservation under that name.”)
To ensure this program runs correctly and adheres to Python syntax, including using standard ASCII quotation marks and adding proper indentation for the if
and else
blocks, here’s the revised version:
user_name = input("What is your name?: ")
reservation_name = "Eva"
print("Name: " + user_name)
if user_name == reservation_name:
print("Right this way!")
else:
print("Sorry, we don’t have a reservation under that name.")
OR
name = str(input("Hi! Whats your name?: "))
reservation_name = "Jack"
if name == reservation_name: print("Right this way!")
else: print("Sorry, we don't have a reservation under that name.")
Leave a comment