Adding Images to Python
Wouldn't it be great to have pictures pop up along with your questions? When you get the hang of incorporating images into your questions, I think the sky is the limit to what you can do! So without further ado, let's begin. The example below will add just one picture to the "Learning State Capitals" code, which you saw previously on the page "Simple Copy-and-Paste Codes."
Note: From my previous "First Install Python" page, after installing Python, we installed the PIL module in order to allow us to display images. So we are good to go.
Follow these 3 steps:
Step 1: Create a folder on your desktop named "Learning State Capitals with Map."
Step 2: Save the image below with extension "jpg" to your folder "Learning State Capitals with Map."
How to: Right-click on the image below and click "Save image as..." and type "map". "Save as type:" should already show ".jpg". Either Save it on the desktop and then drag it into the folder created above, or browse to that folder and save it there.
Last, highlight the codes below, starting at # Pound and going 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, but it is important that it is saved in the same folder, Learning State Capitals with Map, because this is where the picture file is located. As you will soon see, the U.S. map will pop up along with the first question. Note the addition of new codes for implementing the picture.
# 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 state, with 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\nwhile a capital always refers to a city.')
print('')
print('Image of a U.S. map with capitals is shown. Please use it to review and check answers when needed. With many repetitions, you\nwill be able to learn all the state capitals.')
print('')
print('Ready? Let\'s give it a try!')
print('')
from PIL import Image #this code needs to be executed one time only, before the image code can display the picture
img=Image.open('map.jpg') #the filename of the picture to be displayed is indicated here
img.show()
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!')