x = raw_input ("Name a Scottish Indie Rock Band: ")points = 0if (x == "Franz Ferdinand"): print("Yep, they're pretty cool, right?") points = points + 1else: print("Who? Stop making up Bands...")y = raw_input ("What is the powerhouse of the cell? ")if (y == "mitochondria"): print("Good meme.") points = points + 1else: print("You're just... wrong...")print ("You got " + str(points) + " questions right")Create a quiz with a minimum of 5 questions. Your quiz should have different results depending on how many points you receive.
Example: