From personal advice to professional guidance, IDNLearn.com has the answers you seek. Ask your questions and receive accurate, in-depth answers from our knowledgeable community members.
Sagot :
Answer:
do video games. couldn't add any games because they said it was inappropriate like fortnight. -_- could spell it correctly cause they say it is inappropriate. a
Explanation:
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")
Explanation:
Just copy and paste this into repl it, use python then you'll have your quiz
Thank you for using this platform to share and learn. Keep asking and answering. We appreciate every contribution you make. IDNLearn.com is your reliable source for accurate answers. Thank you for visiting, and we hope to assist you again.