Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #-----------------------------------------------------------------------
- # VARIABLE DEFINITIONS
- eof = False
- zipRecord = ""
- zipFile = ""
- zipCode = []
- city = []
- state = []
- parsedList = []
- #-----------------------------------------------------------------------
- # CONSTANT DEFINITIONS
- USERPROMPT = "\nEnter a zip code to find (Press Enter key alone to stop): "
- #-----------------------------------------------------------------------
- # FUNCTION DEFINITIONS
- def startUp():
- global zipFile
- print "zipcode lookup program".upper()
- zipFile = open("zipcodes.txt","r")
- loadList()
- def loadList():
- while readRecord():
- pass
- processRecords()
- def readRecord():
- global eof, zipList, zipCode, city, state, parsedList
- zipRecord = zipFile.readline()
- if zipRecord == "":
- eof = True
- else:
- parsedList = zipRecord.split(",")
- zipCode.append(parsedList[0])
- city.append(parsedList[1])
- state.append(parsedList[2])
- eof = False
- return not eof
- def processRecords():
- userInput = raw_input(USERPROMPT)
- if userInput:
- print userInput
- print zipCode
- if userInput in zipCode:
- index_ = zipcode.index(userInput)
- print "The city is %s and the state is %s " % \
- (city[index_], state[index_])
- else:
- print "\nThe zip code does not exist."
- else:
- print "Please enter a data"
- def closeUp():
- zipFile.close()
- #-----------------------------------------------------------------------
- # PROGRAM'S MAIN LOGIC
- startUp()
- closeUp()
- raw_input("\nRun complete. Press the Enter key to exit.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement