Please Clarify the 'TypeError: zip argument #1 must support iteration'
import openpyxl book = openpyxl.load_workbook('c:/users/c_thv/desktop/tax.xlsx') sheet = book.get_sheet_by_name('Thilip') cell = sheet.cell(row=2,column = 4) i = 2 x = [] y = []while i < 10: keys = sheet.cell(row=i,column = 4) values = sheet.cell(row = i,column = 5) x.append(keys.value) y.append(values.value) i +=1 mydict = dict(zip(keys,values)print mydict
-- https://mail.python.org/mailman/listinfo/python-list