import gspread
from oauth2client.service_account import ServiceAccountCredentials
scope = ['https://spreadsheets.google.com/feeds', 'https://www.googleapis.com/auth/drive']
credentials = ServiceAccountCredentials.from_json_keyfile_name('TTOOL-f0b223d454c13.json', scope)
gc = gspread.authorize(credentials)
wks = gc.open("Log").sheet1
for s in gc.openall():
print (s.title)
wks.append_row(["A", "B", "C"])
我尝试删除“A”。还是走到了最底层。我只想忽略第一列。知道怎么做吗?