Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. import random
  2. def main():
  3. states = {
  4.  
  5. 'Alabama','Alaska','Arizona','Arkansas','California','Colorado',
  6. 'Connecticut','Delaware','Florida','Georgia','Hawaii','Idaho',
  7. 'Illinois','Indiana','Iowa','Kansas','Kentucky','Louisiana',
  8. 'Maine' 'Maryland','Massachusetts','Michigan','Minnesota',
  9. 'Mississippi', 'Missouri','Montana','Nebraska','Nevada',
  10. 'New Hampshire','New Jersey','New Mexico','New York',
  11. 'North Carolina','North Dakota','Ohio',
  12. 'Oklahoma','Oregon','Pennsylvania','Rhode Island',
  13. 'South Carolina','South Dakota','Tennessee','Texas','Utah',
  14. 'Vermont','Virginia','Washington','West Virginia',
  15. 'Wisconsin','Wyoming'
  16. }
  17.  
  18.  
  19. print('What city are you from')
  20. city = input()
  21. print('What is your favorite team?')
  22. team = input()
  23. print('What state is close to you?')
  24. state = input()
  25. print('What is the name of your Governor?')
  26. governor = input()
  27. print('What is the name of your Senator?')
  28. senator = input()
  29. print('what is the name of your Sherif?')
  30. sherif = input()
  31. print('What is your favorite baseball team?')
  32. baseball = input()
  33. print('What is your favorite basketball team?')
  34. basketball = input()
  35. print('What is your favorite hockey team?')
  36. hockey = input()
  37.  
  38. print ('Base on your answer the state you should live in is:' + states)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement