Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. infoList = []
  2. excelFile = input('From which does the info need to be extracted: ')
  3. with open(excelFile) as csvfile:
  4. csvreader = csv.reader(csvfile, delimiter=',')
  5. for row in csvreader:
  6. current = row
  7. print(row[26])
  8. if row[26] in cellFiles:
  9. infoList.append(current)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement