MichalMisior / Python-projects

0 stars 0 forks source link

Avengers quiz (py) #2

Open MichalMisior opened 10 months ago

MichalMisior commented 10 months ago

print("Kim jesteś z filmu 'Avengers?'") print() print("Odpowiedz na pytania poniżej!") print() print("Please use Y or N for yes and no.") likeGreen = input("Do you like the color green?: ") if likeGreen == "Y": print("You must be the Hulk!") IronIsCool = input("Do you think building robots is cool?: ") if IronIsCool == "Y": print("You must be Iron Man. Cool suit!") TimeTravel = input("Do you like traveling through time?: ") if TimeTravel == "Y": print("You must be Captain America!") Strong = input("Are you super strong?: ") if Strong == "Y": print("You have got to be Thor!") else: print("I guess you are not like anyone from 'Avengers.'")

MichalMisior commented 9 months ago

avengers-quiz.txt