Answer:
name = input("What is your name? ")
print("Welcome to my quiz", name)
playing= input("do you want to play? ")
if playing != "yes" :
quit ()
print("Okay! Let's play! :)")
score = 0
answer = input("who made the mona lisa? ")
if answer == "leonardo davinci":
print ('Correct! ')
score += 10
else:
print('incorrect')
answer = input ("what are the seven elements of art? ")
if answer == "color, form, line, shape, space, texture, and value":
print ('correct')
score += 10
else:
print ('incorrect')
answer = input ("Who made the broken column? ")
if answer == "Frida Kahlo":
print ('correct')
score += 10
else:
print ('incorrect')
answer = input ("How much is the starry night worth? ")
if answer == "one hundred million":
print ('correct')
score += 10
else:
print ('incorrect')
answer = input ("Who was the oldest artist? ")
if answer == "Julian Phelps Allan":
print ('correct')
score += 10
answer = input ("Who was the first black artist? ")
if answer == "Henry Ossawa Tanner":
print ('correct')
score += 10
else:
print ('incorrect')
answer = input ("What is the most expensive art piece? ")
if answer == "Salvator Mundi":
print ('correct')
score += 10
else:
print ('incorrect')
answer = input (" What is the most popular sculpture? ")
if answer == "Venus of Willendorf":
print ('correct')
score += 10
else:
print ('incorrect')
answer = input ("Who was the first woman artist?")
if answer == "Artemisia Gentileschi":
print ('correct')
score += 10
else:
print ('incorrect')
answer = input ("How old is the Mona Lisa?")
if answer == "519 years old":
print ('correct')
score += 10
else:
print ('incorrect')
answer = input ("What are the most popular art mediums?")
if answer == "Prints, photographs, and works on paper":
print ('correct')
score += 10
else:
print ('incorrect')
print ("Congrats You got" + str(score) +"questions correct")
Step-by-step explanation:
Just copy and paste this into repl it, use python then you'll have your quiz