Quiz Game in Python | GANESHRAWATZ | #pythonprojects #pythonbeginnersprojects

preview_player
Показать описание
Learn to code a Python quiz game! This beginner-friendly tutorial shows you how to create a quiz that tests your Python knowledge and tracks your score. Full code below! 👇 Perfect for beginners or anyone learning Python. What’s your score? Comment below!
#Python #pythonprojects #pythonprojectsforbeginners #pythonporjects #pythonprojectideas #pythonforbeginners #CodingTutorial #PythonQuiz #LearnPython #CodingForBeginners #pythonprojectswithsourcecode #quiz #quizinpython #quizgames

Code:
QUESTIONS = [
("Which function is used to print output in Python?", "print"),
("How do you start a comment in Python?", "#"),
("What keyword is used to define a function in Python?", 'def'),
("What operator is used for addition in Python?", "+"),
("What does 'int' stand for in Python?", "integer"),
("What keyword is used to create a loop in Python?", "for")
]
score = 0
for question, answer in QUESTIONS:
user_answer = input(question + " ")
print("Correct!")
score += 1
else:
print("Incorrect!")
print(f"The answer was: {answer}")
print(f"Your final score: {score}")
Try it!
Subscribe my channel @GANESHRAWATZ for more projects!
Thank you!
Рекомендации по теме
join shbcf.ru