Advertisement
Guest User

Untitled

a guest
Apr 1st, 2013
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. #-----------------------------------------------------------------------
  2. # VARIABLE DEFINITIONS
  3.  
  4. eof = False
  5. zipRecord = ""
  6. zipFile = ""
  7. zipCode = []
  8. city = []
  9. state = []
  10. parsedList = []
  11.  
  12. #-----------------------------------------------------------------------
  13. # CONSTANT DEFINITIONS
  14.  
  15. USERPROMPT = "\nEnter a zip code to find (Press Enter key alone to stop): "
  16.  
  17. #-----------------------------------------------------------------------
  18. # FUNCTION DEFINITIONS
  19.  
  20. def startUp():
  21. global zipFile
  22. print "zipcode lookup program".upper()
  23. zipFile = open("zipcodes.txt","r")
  24. loadList()
  25.  
  26. def loadList():
  27. while readRecord():
  28. pass
  29. processRecords()
  30.  
  31.  
  32. def readRecord():
  33. global eof, zipList, zipCode, city, state, parsedList
  34. zipRecord = zipFile.readline()
  35. if zipRecord == "":
  36. eof = True
  37. else:
  38. parsedList = zipRecord.split(",")
  39. zipCode.append(parsedList[0])
  40. city.append(parsedList[1])
  41. state.append(parsedList[2])
  42. eof = False
  43. return not eof
  44.  
  45. def processRecords():
  46. userInput = raw_input(USERPROMPT)
  47. if userInput:
  48. print userInput
  49. print zipCode
  50. if userInput in zipCode:
  51. index_ = zipcode.index(userInput)
  52. print "The city is %s and the state is %s " % \
  53. (city[index_], state[index_])
  54. else:
  55. print "\nThe zip code does not exist."
  56. else:
  57. print "Please enter a data"
  58.  
  59. def closeUp():
  60. zipFile.close()
  61.  
  62. #-----------------------------------------------------------------------
  63. # PROGRAM'S MAIN LOGIC
  64.  
  65. startUp()
  66. closeUp()
  67.  
  68. raw_input("\nRun complete. Press the Enter key to exit.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement