我正在使用gspread庫從Google電子表格中讀取單元格值。 我要循環,如範圍:while循環增加django範圍
col_index=3
i=0
while i<4:
cell_values_list=[worksheet.cell(r, c).value for r in range(10,20) for c in range(col_index,col_index+3)]
...
...
col_index=col_index+3
i=i+1
,而不是使用行的列值,我想用
worksheetworksheet.range('C10:E20')
,並在接下來的迭代中,我想
worksheetworksheet.range('F10:H20')
和等等。
誰能請幫助我,我怎麼能重複或者說增加我的列值
有多少列有在您的電子表格? A到Z或更多? – Nhor
我想從列A到N和第10到20行訪問 –