Quiz Program Using Python Language
"Hello World"
Welcome To
nareshtechweb.blogspot.com
Source Code :
#Creating Quiz Game
#First Creating Banner
import os
#clear screen
os.system('cls')
def banner():
print("########################################")
print("# #")
print("# #")
print("# WelCome To #")
print("# Quiz Game... #")
print("# #")
print("# #")
print("########################################")
banner()
#Lets Start Code....
print("1.Larry Page")
print("2.Musk")
print()
go = input("Who Is Google Company Founder : ")
if go == str(1):
print("...Correct...")
else:
print("...Wrong...")
print()
print()
print("1.Bill Gates")
print('2.mark Zeckerberg')
print()
ms = input("Who is MicroSoft Compay Founder : ")
if ms == str(1):
print("...Correct...")
else:
print("...Wrong...")
print()
print()
print("1.Jeff Bezos")
print("2.Steve Jobs")
print()
apple = input('Whos is Apple Company Founder : ')
if apple == str(2):
print("...Correct...")
else:
print("...Wrong...")
print()
print()
print("1.Mark Zeckerberg")
print("2.Elon Musk")
print()
tesla = input("Who is Tesla Company Founder : ")
if tesla == str(2):
print("...Correct...")
else:
print("...Wrong...")
print()
print()
print("1.Jeff Bezos")
print("2.Tata")
print()
az = input("Who is Amazon Company Founder : ")
if az == str(1):
print("...Correct...")
else:
print("...Wrong...")
print()
print()
print()
print("Game Over")
print("Game Over")
print("Game Over")
print("Game Over")
print("It's Worked Thanks For Watching")
***********************************************************************************
Follow Me :YouTube
Follow Me : Instagram
Follow Me:Facebook
Follow Me :Twitter
Follow Me :Blog
***********************************************************************************
Comments
Post a Comment