Learning State Capitals

Highlight starting at # Pound all the way to the end of this page. Then right-click on the mouse and click copy. Start Python Idle, click File, drop down to New File, and paste the codes. Next, click "Run," then "Run Module." Save it with any name you like. It should be quite fun running the codes until you can name all the capitals of the 50 states. 

These coding questions are looped. You must get the answer correct in order to proceed to the next question.

Note how repetitive the codes are and what simple changes you can make to make each group of codes into a different question. And it doesn't even have to be a learning capital question. You can easily create your own questions pertaining to other subjects.



# Pound sign as shown on the left, allows you to add notes at the end of a code line or on a separate line. It is ignored during code execution.


# Notice only 8 main lines of code to learn the state capitals. Everything else repeats with different answers and questions.


print('')

print('Do you know your state capitals?')

print('')

print('State capitals are important because they house the governments of their states and provide a meeting place for the state legislature.')

print('')

print('Many meeting buildings are called capitols, which are distinguished from capitals in that a capitol refers to buildings while a capital\nalways refers to a city.')

print('')

print('An image of a U.S. map with capitals is shown. Please use it to review and check answers when needed. With many repetitions, you will\nbe able to learn all the state capitals.')

print('')

print('Ready? Let\'s give it a try!')

print('')      

                                                            

answer='Baton Rouge'                                                    #1

yranswer=''                                                             #2

while yranswer != answer:                                               #3

    print('')                                                           #4

    yranswer=input('What is the capital of Louisiana? ')                #5                                                     

    if yranswer != answer:                                              #6                                         

        print('Sorry, try again.')                                      #7

print('Awesome! Way to go!')                                            #8                                      

                                                         


answer='Sacramento'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of California? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Montgomery'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Alabama? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Juneau'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Alaska? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Phoenix'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Arizona? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Little Rock'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Arkansas? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Denver'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Colorado? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Hartford'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Connecticut? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')



answer='Dover'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Delaware? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')



answer='Tallahassee'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Florida? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Atlanta'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Georgia? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Honolulu'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Hawaii? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Boise'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Idaho? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Springfield'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Illinois? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Indianapolis'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Indiana? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Des Moines'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Iowa? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Topeka'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Kansas? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Frankfort'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Kentucky? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Augusta'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Maine? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')





answer='Annapolis'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Maryland? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Boston'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Massachusetts? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Lansing'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Michigan? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')





answer='Saint Paul'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Minnesota? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Jackson'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Mississippi? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')





answer='Jefferson City'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Missouri? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')





answer='Helena'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Montana? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')





answer='Lincoln'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Nebraska? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Carson City'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Nevada? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Concord'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of New Hampshire? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Trenton'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of New Jersey? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')



answer='Santa Fe'

yranswer=''

while yranswer !=answer:

    print('')

    yranswer=input('What is the capital of New Mexico? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Albany'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of New York? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Raleigh'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of North Carolina? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Bismarck'

yranswer=''

while yranswer !=answer:

    print('')

    yranswer=input('What is the capital of North Dakota? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Columbus'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Ohio? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Oklahoma City'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Oklahoma? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Salem'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Oregon? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Harrisburg'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Pennsylvania? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Providence'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Rhode Island? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Columbia'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of South Carolina? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Pierre'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of South Dakota? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Nashville'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Tennessee? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Austin'

yranswer=''

while yranswer !=answer:

    print('')

    yranswer=input('What is the capital of Texas? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Salt Lake City'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Utah? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Montpelier'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Vermont? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Richmond'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Virginia? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Olympia'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Washington? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Charleston'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of West Virginia? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Madison'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('What is the capital of Wisconsin? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('Awesome! Way to go!')




answer='Cheyenne'

yranswer=''

while yranswer != answer:

    print('')

    yranswer=input('Good Job, last one. What is the capital of Wyoming? ')

    if yranswer != answer:

        print('Sorry, try again.')

print('')

print('Awesome! Way to go! You rock! You know all the capitals of the states!')