I have a python file with the following code:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import xlrd
loc = ("/Users/arielkotch/Desktop/file/project/testFile.xlsx")
wb = xlrd.open_workbook(loc)
sheet = wb.sheet_by_index(0)
for i in range(sheet.nrows):
print(sheet.row_values(i))
The response I get is as follows.
I am new to python, I have tried stripping the whitespace, after cycling through each sub array, but it still appears to have white space.