Posts by Mauricio Gabriel • 53 points
2 posts
-
1
votes1
answer1200
viewsQ: Obtaining data from excel and turning it into a list by Python
import xlrd def ler_arquivo(teste_termal1): tt1= xlrd.open_workbook('teste_termal1.xls', formatting_info=True) eajp60= workbook_r.sheet_by_index(3) Coluna_4=[3] Coluna_13=[12] return {…
-
4
votes1
answer21806
viewsQ: Read rows and columns by Python, by excel
My doubt is if there is any resource for me to be able to read excel rows and columns. For example: I have experimental data in excel containing header in the first row having about 12 columns of…