import openpyxl
wb = openpyxl.load_workbook('example.xlsx')
sheet = wb.active
sheet.columns[1]
Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
sheet.columns[1]
TypeError: 'generator' object is not subscriptable
我是Python初學者,這是我第一次發佈我的問題。 我堅持使用上面的TypeError說'發生器'對象不是可以訂閱的。我想我確切地輸入了寫在網站上的代碼。 該網站的網址是https://automatetheboringstuff.com/chapter12/TypeError:'發生器'對象不可自訂
請幫我解決這個錯誤。
此代碼適用於我。正如@slai建議的那樣,檢查您的數據。 –
不幸的是,這本書沒有被更新以反映API的變化。對於臨時訪問,使用Python的切片符號,例如。 'ws ['A']'獲得列A中的單元格列表。 –