This is KBC game.
Welcome to KBC Game
This is MCQ type game and only use python, so let's start the KBC (Kaun Banega Crorepati).
price1="1000 (1 Thousand)."
price2="10000 (10 thousand)."
price3="100000 (1 Lakh)."
price4="1000000 (10 lakh)."
price5='10000000 (1 Crore).'
print("Hii,\nWelcome to KBC.\n")
print("Let start KBC.\n")
print("Now, This is your 1 Question?")
print("What is the capital of India?")
print('''(a). Delhi
(b). Goa
(c). Mumbai
(d). Bangalore''')
answer1= str(input("Enter the option: "))
if answer1.lower() == 'a':
print("π€π€π€ Ok, Your answer is right and you won",price1)
print("\n\nWho was the first Prime Minister of India?")
print('''(a). Narendra Modi
(b). Nehru
(c). Dr. Manmohan Singh
(d). Dr. APJ Abdul Kalam''')
answer2 = str(input("Enter the option: "))
if answer2.lower() == 'b':
print("π€π€π€π€ Ok, Your answer is right and you won", price2)
print("\n\nWhat is the largest state by area in India?")
print('''(a). Rajasthan
(b). Delhi
(c). Mumbai
(d). Uttar Pradesh''')
answer3 = str(input("Enter the option: "))
if answer3.lower() == 'a':
print("π€π€π€ Ok, Your answer is right and you won", price3)
print("\n\ncongratulation you are come on difficult level Strat π€")
print("\n\nWhich river is considered sacred by Hindus in India?")
print('''(a). Brahmaputra
(b). Narmada River
(c). Yamuna
(d). Ganges''')
answer4 = str(input("Enter the option: "))
if answer4.lower()=='d':
print("π€π€π€ Ok, Your answer is right and you won", price4)
print("\nKnow your is it last round price 1Cr. π€―π±π¨\n\n")
print("\n\nWhich city in India is known as the 'Silicon Valley'?")
print('''(a). Indore
(b). Delhi
(c). Bangalore
(d). Mumbai''')
answer5 = str(input("Enter the option: "))
if answer5 == 'c':
print("π€π€π€ Ok, Your answer is right and you won", price4)
print("\n π€πΈπ΅π°π€ππ€©π₯³")
else:
print("Oo no last round you loss 1Cr.πππ")
else:
print("\nIt is false.\nSorry you are loss the game π’")
else:
print("\nIt is false.\nSorry you are loss the game π’")
else:
print("\nIt is false.\nSorry you are loss the game π’")
else:
print("\nIt is false.\nSorry you are loss the game π’ ")
Comments