This project will guide you to create a **simple multiple-choice quiz game** using Python. Follow the steps carefully to implement it successfully.
Hint: Use dictionaries or lists to store questions and answers!
Step 1: Create Questions
Instructions:
- Create a list or dictionary containing at least 5 questions.
- Each question should have 4 options and the correct answer.
- Example structure:
question = {
"What is the capital of India?": "Delhi",
"What is 5 + 7?": "12"
}
Tips for Students
- Start by creating a small set of questions and test the game.
- Use loops and conditional statements to manage game logic.
- You can enhance later by adding more questions or using functions.
Have fun building your quiz game! 🎮