marc wyburn wrote:
Hi, I'm using the CSV module to parse a file using
whitelistCSV_file = open("\\pathtoCSV\\whitelist.csv",'rb')
whitelistCSV = csv.reader(whitelistCSV_file)
for uname, dname, nname in whitelistCSV:
print uname, dname, nname
The first time I run the for loop the conte
Hi, I'm using the CSV module to parse a file using
whitelistCSV_file = open("\\pathtoCSV\\whitelist.csv",'rb')
whitelistCSV = csv.reader(whitelistCSV_file)
for uname, dname, nname in whitelistCSV:
print uname, dname, nname
The first time I run the for loop the contents of the file is
di