Write a program that creates a dictionary containing the U.S. states as keys and their capitals as values. (Use the Internet to get a list of the states and their capitals.) The program should then randomly quiz the user by displaying the name of a state and asking the user to enter that state’s capital. The program should keep a count of the number of correct and incorrect responses. (As an alternative to the U.S. states, the program can use the names of countries and their capitals.)

Respuesta :

Answer:

  1. import random  
  2. states = {
  3.    "Alabama": "Montgomery",
  4.    "California": "Sacramento",
  5.    "Florida": "Tallahassee",
  6.    "Hawaii": "Honolulu",
  7.    "Indiana": "Indianapolis",
  8.    "Michigan": "Lansing",
  9.    "New York": "Albany",
  10.    "Texas" : "Austin",
  11.    "Utah" : "Salt Lake City",
  12.    "Wisconsin": "Madison"
  13. }
  14. correct = 0
  15. wrong = 0
  16. round = 1
  17. while(round <= 5):
  18.    current_state = random.choice(list(states))
  19.    answer = input("What is the capital of " + current_state + ": ")
  20.    
  21.    if(answer == states[current_state]):
  22.        correct += 1
  23.    else:
  24.        wrong += 1
  25.    
  26.    round += 1
  27. print("Correct answer: " + str(correct))
  28. print("Wrong answer: " + str(wrong))

Explanation:

The solution code is written in Python 3.

Line 3 -14

Create a dictionary of US States with capital as each of their corresponding value. Please note only ten sample states are chosen here.

Line 16 - 18

Create variables to track the number of correct and inaccurate response and also round counter.

Line 19 - 28

Set the while condition to enable user to play the quiz for five questions and use random.choice to randomly pick a state from the dictionary and prompt user to input the capital of selected stated.

If the answer matched with the capital value of the selected state, increment the correct counter by one. Otherwise the wrong counter will be incremented by one. Increment the round counter by one before proceed to next round.

Line 30 - 31

Print the number of correct responses and wrong responses.

fichoh

The program which gives users a quiz on the states and capitals in the United States is written in python 3 thus :

import random

states = {"indianapolis":"indiana", "columbus":"ohio", "jackson":"mississippi",

"phoenix":"arizona", "honolulu":"hawaii", "richmond":"virginia",

"springfield":"illnois", "lincoln":"nebraska",

"boston":"massachuettes", "lansing":"michigan", "desmoines": "iowa",

"salem": "oregon"}

#states and capital entered into a dictionary

count = 0

correct = 0

wrong = 0

#initialize containers for wrong, correct and number of tries

num_q = int(input('your number of questions : '))

# number of questions

while(count < num_q):

current_state = random.choice(list(states))

answer = input("What is the capital of " + current_state + ": ")

if(answer == states[current_state]):

correct += 1

else:

wrong += 1

#Takes the count of wrong, right and tries

count += 1

print("Correct answer: " + str(correct))

print("Wrong answer: " + str(wrong))

#display the number of right and wrong answers

A sample run of the program is attached.

Learn more : https://brainly.com/question/25288535

Ver imagen fichoh