print("Welcome to the test 'Are you Syrian or not':  ")
print("You should use transportation, train, bus or taxi ")
transportation = input("What will you choose? \n ").lower()
if transportation == "train":
 print("Sorry, there is no train in Syria.")
elif transportation == "bus":
 print("Sorry, it will be very crowded, you won't be able to enter. ")
elif transportation == "taxi":
 print("Correct, there is 3 taxis, yellow, red and green")
else:
 print("Sorry, this option is not available.")
color = input("Which one will you choose? \n ").lower()
if color == "yellow":
 print("Correct!")
elif color == "red":
 print("Sorry, there is no red taxi in Syria.")
elif color == "green":
 print("Sorry, this color is not available.")
else:
 print("Sorry, this option is not available.")
mony = input("How will you pay, cash or visa? \n ").lower()
if mony == "cash":
 print("That is right! you are true Syrian.")
elif mony == "visa":
 print("Sorry, Visa is not available in Syria.")
else:
 print("Sorry, this option is not available.")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: