Lippincott Williams & Wilkins

# create destination csv file. FinalPagerData = outputfile # set-up csv reader, initiate line-counter and variables. csvReader = csv.reader(RawPagerData) n = 0. num = "Pager Number" date = "Date" time = "Time" msg = "Text Message Content" #make open list. SortedPagerData = [] # loop through lines in csv alternating b/w odd and even. for row in ... ................
................