score = 0 print("Criminal Minds: Quiz") print("Criminal Minds is a show about FBI profilers and how they analyze serial killer's behaviors in order to catch them.") print("--------------------------") print("Q1:What is Penelope Garcia's hacker name?") print("a.Midnight Surfer \nb.The Black Queen \nc.The Angel \nd.Magical Mayhem") ans1=input("Enter answer here by typing 'a,b,c or d':") print(ans1) if ans1=="b"or ans1=="B": print("Correct, this is the right answer. Good job!") score+=10 print("Current Score:",score) else: print("Incorrect, better luck next time!") print("Current Score:",score) print("---------------------------") print("Q2: What is Dr. Spencer Reid's IQ?") print("a.140 \nb.155 \nc.187 \nd.162") ans2=input("Enter answer here by typing 'a,b,c or d':") if ans2=="c" or ans2=="C": print("Correct, this is the right answer. Good job!") score+=10 print("Current Score:",score) else: print("Incorrect, better luck next time!") print("Current Score:",score) print("--------------------------") print("Q3:Which BAU member leaves in season 3?") print("a.Jason Gideon \nb.Jennifer 'JJ' Jareau \nc.Derek Morgan \nd.Aaron Hotchner") ans3=input("Enter answer here by typing 'a,b,c or d':") print(ans3) if ans3=="a"or ans3=="A": print("Correct, this is the right answer. Good job!") score+=10 print("Current Score:",score) else: print("Incorrect, better luck next time!") print("Current Score:",score) print("--------------------------") print("Q4:What was Emily Prentiss's job before joining the BAU?") print("a.Secret Service \nb.Interpol \nc.Detective \nd.CIA") ans4=input("Enter answer here by typing 'a,b,c or d':") print(ans4) if ans4=="b"or ans4=="B": print("Correct, this is the right answer. Good job!") score+=10 print("Current Score:",score) else: print("Incorrect, better luck next time!") print("Current Score:",score) print("--------------------------") print("Q5:What is Spencer Reid's favorite Donut?") print("a.Jelly Filled \nb.Chocolate Frosted w/Sprinkles \nc.He Doesn't Like Donuts \nd.Glazed Old Fashioned") ans5=input("Enter answer here by typing 'a,b,c or d':") print(ans5) if ans5=="b"or ans5=="B": print("Correct, this is the right answer. Good job!") score+=10 print("Current Score:",score) else: print("Incorrect, better luck next time!") print("Current Score:",score) print("--------------------------") print("Q6:What two words does Emily Prentiss repeat in her head while being held captive by Mr.Scratch") print("a.'Keep Fighting' \nb.'Stay Awake' \nc.'Wheels Up' \nd.'Why Me'") ans6=input("Enter answer here by typing 'a,b,c or d':") print(ans6) if ans6=="c"or ans6=="C": print("Correct, this is the right answer. Good job!") score+=10 print("Current Score:",score) else: print("Incorrect, better luck next time!") print("Current Score:",score) print("--------------------------") print("Q7:Why did Derek Morgan start calling Penelope Garcia 'Baby Girl'") print("a.He did not know her \nb.They were dating \nc.She asked him to") ans7=input("Enter answer here by typing 'a,b or c':") print(ans7) if ans7=="a"or ans7=="A": print("Correct, this is the right answer. Good job!") score+=10 print("Current Score:",score) else: print("Incorrect, better luck next time!") print("Current Score:",score) print("--------------------------") print("Q8:How many languages does Emily Prentiss speak?") print("a.4 \nb.5 \nc.7 \nd.6") ans8=input("Enter answer here by typing 'a,b,c or d':") print(ans8) if ans8=="c"or ans8=="C": print("Correct, this is the right answer. Good job!") score+=10 print("Current Score:",score) else: print("Incorrect, better luck next time!") print("Current Score:",score) print("--------------------------") print("Q9:How old was Spencer Reid when he graduated high school?") print("a.14 \nb.13 \nc.15 \nd.12") ans9=input("Enter answer here by typing 'a,b,c or d':") print(ans9) if ans9=="d"or ans9=="D": print("Correct, this is the right answer. Good job!") score+=10 print("Current Score:",score) else: print("Incorrect, better luck next time!") print("Current Score:",score) print("--------------------------") print("Q10:Who was not a member of the BAU") print("a.Stephen Walker \nb.Dr. Tara Lewis \nc.Alex Blake \nd.William LeMontagne") ans10=input("Enter answer here by typing 'a,b,c or d':") print(ans10) if ans10=="d"or ans10=="D": print("Correct, this is the right answer. Good job!") score+=10 print("Final Score:",score) else: print("Incorrect, better luck next time!") print("Final Score:",score) print("--------------------------") print("Congratulations! The Quiz is over!")