i created a python project. here is the code(Just copy and paste into python websites like trinket. pls credit me if u use and tell me if it is fun): import time import random score = 0 print("Welcome to the ??? Game? (Y = yes, N = no)") gamestartq=input("Do u want to play?") if gamestartq == "Y": print("LETTTTTTTTTS GET INTO ITTTTTTTTTTT") else: print("HAHAHAHAHAHA!!!!!!!!!!!!! SINCE U HAVE STARTED, THERE IS NO ESCAPE. LET THE ?????????GAMES........ START!!!") print("So so so,") print("I have decide to be VERY KIND with u people.") time.sleep(2) print("YOU WILL FACE MY QUIZZES, OT I'LL EAT U UP.") print("HAHAHAHA") time.sleep(1) print("U GUYS BROUGHT THHIS OWN YOURSELVES, and you have to face is because of U!!!") time.sleep(3) print("Q1") time.sleep(1) print("Who is the 45th president of USA") q1=input("A) Joe Biden B)Donald Trump C)Barak Obama") if q1=="B": print("Yay, u r right!") score = score + 2 else: print("NAH, U R WRONG") print("YOUR SCORE NOW:" + str(score)) time.sleep(3) print("Q2") time.sleep(1) print("What do you call a group of giraffes?") q2=input("A)Tower B)Bridge C)pack") if q2=="A": print("Yay, u r right!") score = score + 2 else: print("NAH, U R WRONG") print("YOUR SCORE NOW:" + str(score)) time.sleep(3) print("Q3") time.sleep(1) print(" Where did the Olympic games originate?") q3=input("A)India B)Spain C)Greece") if q3=="C": print("Yay, u r right!") score = score + 2 else: print("NAH, U R WRONG") print("YOUR SCORE NOW:" + str(score)) time.sleep(3) print("Q4") time.sleep(1) print(" What food is the most ordered in America?") q4=input("A)Fries B)Fried Chicken C)Burgers") if q4=="B": print("Yay, u r right!") score = score + 2 else: print("NAH, U R WRONG") print("YOUR SCORE NOW:" + str(score)) time.sleep(3) print("Q5") time.sleep(1) print("What is the only flying animal") q5=input("A. The bat B. The flying squirrel C. The bald eagle D. The colugo") if q5=="A": print("Yay, u r right!") score = score + 2 else: print("NAH, U R WRONG") print("YOUR SCORE NOW:" + str(score)) time.sleep(3) print("Q6") time.sleep(1) print("What is the largest big cat?") q6=input("A)Lion B)Tiger C) leopard") if q6=="B": print("Yay, u r right!") score = score + 2 else: print("NAH, U R WRONG") print("YOUR SCORE NOW:" + str(score)) time.sleep(3) print("Q7") time.sleep(1) print("Which animal's fingerprints look exactly like human fingerprints?") q7=input("A. The bat B. The squirrel C. The koala D. The elephant") if q7=="C": print("Yay, u r right!") score = score + 2 else: print("NAH, U R WRONG") print("YOUR SCORE NOW:" + str(score)) time.sleep(3) print("Q8") time.sleep(1) print("Which was the first country to use paper money? ") q8=input("A.India B.Spain C.Greece D.China") if q8=="D": print("Yay, u r right!") score = score + 2 else: print("NAH, U R WRONG") print("YOUR SCORE NOW:" + str(score)) print("Q9") time.sleep(1) print("Which is not the names of Cinderella's evil stepsisters? ") q9=input("A.Anastasia B.Anthernia C.Drizella") if q9=="B": print("Yay, u r right!") score = score + 2 else: print("NAH, U R WRONG") print("YOUR SCORE NOW:" + str(score)) print("Q10") time.sleep(1) print(" Who teaches Harry how to play Wizard’s chess? ") q10= input("A) Hagrid B) Hermione C) Ron D) Dudley") if q10=="C": print("Yay, u r right!") score = score + 2 else: print("NAH, U R WRONG") print("Your finally score is: score") time.sleep(1) if score == 20: print("Yay U got full marks") elif score >= 10: print("You actually passed") else: print("YOU FAILED?? THE QUIZ WAS SO EASY. LEARN UR GENERAL KNOLEDGE")
Pls post any bugs in my code. TYSM