#Conditional statment V1 # variables score=0 questions=6 name=input('Weclome to my short quiz, what is your name?') print(f'Okay, lets get started {name}') print(f'this quiz has {questions} questions and will be scored at the end') awnser_fruit=input('what color is a bananna?') fruit = awnser_fruit.lower() if fruit == "yellow": print(f'Great job, thats correct, banannas are indeed {fruit}') score = score + 1 else: print(f'No! Banannas are yellow, not {fruit}, you are WRONG.') print:('Okay, lets continue, I will give you a harder challange') alphabet=int(input('How many letters are in the alphabet?')) if alphabet==26: print(f'Good Job, there are exactly {alphabet} letters in the alphabet') score = score + 1 else: print(f'No thats wrong, there are 26 letters in the alphabet not {alphabet}') print:('lets keep going') country_answer=input('where does pizza come from?') country = country_answer.lower() if country == "italy": print(f'Thats correct, it does come from {country}') score = score + 1 else: print(f'No, Pizza does not come from {country}, it comes from ITALY') print:(f'You are doing great {name}, only a few more questions left') planet_answer=input('What planet do we live on') planet=planet_answer.lower() if planet=="earth": print(f'Thats correct, we in fact do live on {planet}') score=score+1 else: print(f'No, we do not live on {planet} we live on EARTH') print('lets countinue') answer_math=int(input('what is 1+1?')) if answer_math==2: print ('Thats correct, 1+1 does equal 2') score=score+1 else: print(f'No, 1+1=2, not {answer_math}!') print('this is the final question, get ready') answer_star=input('what is the big yellow ball in the sky called?') star=answer_star.lower() if star == "sun": print(f'Well done, the ball in the sky is indeed known as the {star}') score=score+1 else: print(f'No, thats incorrect, that thing is the sun, not the {star}') print(f'your final score is {score} out of 6') print(f'Thanks for playing the quiz game {name}')