1
You can take a row from the table and divide it into as many pieces as you want?
I can take cell by cell from the table using an approach I learned here on the forum in an already answered question, but I think I’m opening the same file 2,000 times.
Is it possible, gentlemen?
Here’s the implementation I use today:
workbook = xlrd.open_workbook('MONITORA.xlsm')
worksheet = workbook.sheet_by_name('PREÇO')
preço = worksheet.cell(0, 1)
preço_dois = worksheet.cell(0, 2)
The library used was the
xlrd
? It would be interesting to include the question and the answer to help those who come here to search later.– Rafael Barros
I was going to, but I needed to get a higher score
– Evandro Lauro