Name that President!
The codes below loop and act just like the codes in Learning State Capitals. It looks a little different but does the same. This is another way to create coding questions.
Highlight starting at print ('') 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.
print('')
print('Can you name the presidents on the U.S. currency?')
print('Let\'s try for fun.')
print('Note: If your answer contains a common middle initial, please type, for example, John F. Kennedy. ')
print('')
answer='Andrew Jackson'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the twenty dollar bill? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('You Rock!')
answer='Benjamin Franklin'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the one hundred dollar bill? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('Awesome!')
answer='George Washington'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the one dollar bill? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('Woohoo!')
answer='Abraham Lincoln'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the five dollar bill? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('You\'re on a roll!')
answer='Alexander Hamilton'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the ten dollar bill? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('You\'re Amazing!')
answer='Ulysses Grant'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the fifty dollar bill? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('You Got It!')
answer='Thomas Jefferson'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the two dollar bill? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('Amazing!')
answer='Abraham Lincoln'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the penny? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('Fantastic!')
answer='Thomas Jefferson'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the nickel? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('You\'re almost done. Four more questions.')
answer='Franklin D. Roosevelt'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the dime? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('Way to Go!')
answer='George Washington'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the quarter? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('Wonderful!')
answer='John F. Kennedy'
yranswer=''
while yranswer != answer:
print('')
yranswer=input('Who is on the half dollar coin? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('You\'re on top of the world!')
answer='Aaron Burr'
yranswer=''
while yranswer != answer:
print('')
print('This last question is for fun. Do a quick google on this, and you will find the answer right away!')
print('')
yranswer=input('This person was vice president to President Thomas Jefferson from 1801 to 1805.\nDuring his office term in 1804 he killed Alexander Hamilton in a duel.\nWho was this person? ')
if yranswer != answer:
print('Try Again!')
if yranswer == answer:
print('')
print('Awesome! You did it!')