Untitled

mail@pastecode.io avatarunknown
plain_text
2 months ago
1.0 kB
1
Indexable
Never
print("welcome to Tospık Turtle...")
print("your mission is to find the Tosbık's heart.")

choice1 = input('you are at a crossroad, where do you want to go?Type "left" or "right".').lower()

if choice1 != "left":
   print("You killed the turtle!!!!!!!!!!!Game Over.")
else:
    choice2 = input('you have come to a fork in the road.Type "knife" to knife for a cut.Type"needle" to needle to intravenous.').lower()
    if choice2 == "needle":   choice3 = input("you arrive at the upper respiratory tract.There is a 3 sequence.Lung right lobe,Lung left lobe and trachea. which sequence do you choose???").lower()
    if choice3 == "lung right lobe":
        print("wrong sequence.game over.")
    elif choice3 == "lung left lobe":
        print("Finally!!you succeeded.you reached the heart of the turtle!!!!!")
    elif choice3 == "trachea":
        print("You took the tortoise is breath away. It is dead.Game over.")
    else:
        print("you dont have choose game over.")
else:
     print("wrong way!!!!!!!!Game Over.")