Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In this lab, you are to build a trivia game by using Python Language. The game should present each question either in order or randomly

In this lab, you are to build a trivia game by using Python Language. The game should present each question either in order or randomly to the player, and display up to four possible answers. The player is to input what they believe to be the correct answer. The game will tell the player if they got it right or wrong and will display their score. If they got it right, their score will go up. If they got it wrong, their score will stay the same. After all the questions have been asked, the game will present the final score correct, the final score incorrect and allow the player to play again if they choose. You have a lot of leeway in designing this game and you can use your book though there are minimum requirements to obtain all 30 points (mentioned after this paragraph). Develop your own code and try to use as many of these tools and techniques that you learned about in Chapters in your text. You may leverage other techniques in other Chapters that were not covered if you like, BUT you will need to add comments to the code with why you selected them and a brief description on how it works.
This final script MUST include the following at a minimum:
Main line logic Error handling (Try/except/else/final) Header Comments Global/local Variables (Users name, counters, etc.) At least 1 custom function Use of List/Tuple/Dictionary Use of at least 1 looping function (while / for)
To get started, here are five, four-answer multiple choice questions that you can use. The correct answers have been denoted with an asterisk. You may use your own questions if you like. When you load the questions into your program, you may re-write them however you need to. How many computer-generated effects were used in the movie Lord of the Rings - Return of the King? 5407991205*1488 In the movie "The Blues Brothers", what does Jake order at the diner? A medium pizza with pineapple and ham 3 cheeseburgers with the works and a tall glass of milk *4 fried chickens and a Coke A small Greek salad with extra feta, a steak (well done),2 baked potatoes, and a coffee In The Simpsons, what football team has Homer always wanted to own? Washington Redskins *Dallas Cowboys Denver Broncos Cleveland Browns In the TV show Seinfeld, what did Elaine decide was 'her song'? I am Woman Desperado Yesterday * Witchy Woman Babe Ruth debuted in professional baseball at the age of 19 years old with which team? * Boston Red Sox New York Yankees St Louis Browns Cincinnati Reds
My Code: When I run it showing Invalid Syntax. Please help me fix it asap. Thanks
import random
import time
def main():
try:
# Start the game
welcome() # Display welcome message
game() # Start the game
play_again() # Ask if the player wants to play again
except:
print("An error occurred.")
def welcome():
"""
Display a welcome message and instructions to the player.
"""
print("Welcome to the trivia game!")
print("You will be presented with multiple-choice questions.")
print("Please input the number corresponding to your answer.")
print()
def game():
"""
Present questions to the player, get their answers, and update scores.
"""
# Define questions and their corresponding answers
questions ={
"How many computer-generated effects were used in the movie Lord of the Rings - Return of the King?": {
"answers": {"1": 1488,"2": 9,"3": 7,"4": 540},
"correct": "1"
},
"In the movie 'The Blues Brothers', what does Jake order at the diner?": {
"answers": {"1": "A medium pizza with pineapple and ham", "2": "3 cheeseburgers with the works and a tall glass of milk", "3": "4 fried chickens and a Coke", "4": "A small Greek salad with extra feta, a steak, 2 baked potatoes, and a coffee"},
"correct": "2"
},
"In The Simpsons, what football team has Homer always wanted to own?": {
"answers": {"1": "Washington Redskins", "2": "Dallas Cowboys", "3": "Denver Broncos", "4": "Cleveland Browns"},
"correct": "1"
},
"In the TV show Seinfeld, what did Elaine decide was 'her song'?": {
"answers": {"1": "I am Woman", "2": "Desperado", "3": "Yesterday", "4": "Witchy Woman"},
"correct": "4"
},
"Babe Ruth debuted in professional baseball at the age of 19 years old with which team?": {
"answers": {"1": "Boston Red Sox", "2": "New York Yankees", "3": "St Louis Browns", "4": "Cincinnati Reds"},
"correct": "1"
}
}
score_correct =0 # Counter for correct answers
score_incorrect =0 # Counter for incorrect answers
# Shuffle questions
questions_list = list(questions.keys())
random.shuffle(questions_list)
for question in questions_list:
print(question)
answers = questions

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Conceptual Database Design An Entity Relationship Approach

Authors: Carol Batini, Stefano Ceri, Shamkant B. Navathe

1st Edition

0805302441, 978-0805302448

More Books

Students also viewed these Databases questions