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".Все еще идет к самому низу.Я просто хочу игнорировать первый столбец.есть идеи как это сделать?