I have three columns in my excel file, i have to convert all the rows of the first two columns into a dictionary using xlrd.
Expected Output:
{'Sam' : 'Tester', 'John' : 'Developer', 'Fin' : 'Tester'}

for i in range(1, worksheet.nrows):
row = worksheet.row_values(i)
variable = row[0] + row[1]
print(" {0} {1}".format(row[0],format(row[1])))
print(variable)
The code prints the first two columns. How to convert to dictionary type?