How To Make Quiz Game | Using Python | Beginners Python Project |

Published: 11 June 2021
on channel: ProrammingWith Somesh
170
7

Hi guys, in this video I'm going to show you how to make a Quiz Game using python. so if you like this video, please Subscribe to my channel for more programming-like content.

Code:-
The Quiz Game

print("welcome To My Quiz Game :)")

playing = input("Do You Want To Play: ")
if playing != "Yes".lower():
quit()

print("Okay! Let's play :)")

answer = input("What Does CPU stand For? : ")

if answer == "Central processing unit".lower():
print("Yay !! That is Correct :) ")

else:
print("Oops !! That is Incorrect :(")




answer = input("What is the best programming language for competitive Coding? : ")

if answer == "C++".lower():
print("Yay !! That is Correct :) ")

else:
print("Oops !! That is Incorrect :(")



answer = input("What is the best programming language for Android Development? : ")

if answer == "Java and Kotilin".lower():
print("Yay !! That is Correct :) ")

else:
print("Oops !! That is Incorrect :(")


answer = input("What is the best programming language for IOS App? : ")

if answer == "Swift".lower():
print("Yay !! That is Correct :) ")

else:
print("Oops !! That is Incorrect :(")

print("Thanks For Playing :)")

#python
#QuizGame

Thank You For Watching :)


On this page of the site you can watch the video online How To Make Quiz Game | Using Python | Beginners Python Project | with a duration of hours minute second in good quality, which was uploaded by the user ProrammingWith Somesh 11 June 2021, share the link with friends and acquaintances, this video has already been watched 170 times on youtube and it was liked by 7 viewers. Enjoy your viewing!