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"])
I tried removing "A". Still goes to the very bottom. I just want to ignore the first column. Any idea how to do this?