Quiziz python code
name = input("Enter name: ")
age = input("Enter age: ")
gender = input("Enter gender: ")
phone_number = input("Enter phone number: ")
print("Hello",name)
print("Welcome to my quiz")
playing = input("Do you want to play? ")
if playing != "Yes":
quit()
print("Ok let play")
print("Answer all the question start with a capital letter")
answer = input("Are you gay? ")
if answer == "Yes":
print('Why')
else:
print("Great")
print("Next question")
answer = input("1Kg of rice Rp55,000. 5 kilos of rice how many thousand? ")
if answer == "Rp385,000":
print('Correct')
else:
print("Bruh. The answer is Rp385,000")
print("Next question")
answer = input("The number that has a value of hundreds in the number 182 is? ")
if answer == "1":
print('Correct')
else:
print("What's wrong with you?. The right answer is 1")
print("Next question")
answer = input("Are you ugly? ")
if answer == "No":
print('Doubt')
else:
print("I'm happy you noticed that youre ugly")
answer = input("Does your parent know you are ugly? ")
if answer == "No":
print('Doubt')
else:
print("I'm happy your parent notice's that your ugly")
answer = input("What is the result of 9886 + 2158? ")
if answer == "12044":
print("Correct")
else:
print("You need to learn addition. The actual answer is 12044")
answern = input("How much is K in this equation? x3+y3+z3=k ")
if answer =="42":
print("Correct")
else:
print("How did you get this wrong?!")
answer = input("What is the purpose of life? ")
if answer == " ":
print("Good answer")
else:
print("Good answer")
print("If you have 5 correct answer")
print("Copy this link to a browser for a congratulation video")
print("https://youtu.be/dQw4w9WgXcQ")
print("That all. Thanks for playing! ")
Comments
Post a Comment