如題
最近開始試學習python來操作google sheet
也已成功操作
但現在遇到一個問題
就是新增一列資訊時,無法從第一行開始
我的狀況是會從第AH欄位新增一列
程式碼如下
scope = ['https://spreadsheets.google.com/feeds',
'https://www.googleapis.com/auth/drive']
credentials=ServiceAccountCredentials.from_json_keyfile_name('xxx123.json', scope)
gc = gspread.authorize(credentials)
wks = gc.open("xxx").sheet1
wks.append_row('x','x','x')
請問大家有遇過相同的問題嗎?