Вы можете увидеть здесь в последней строке, что мне нужно пропустить некоторые ячейки, в которые я не хочу вводить данные. Есть идеи, как это сделать?
from oauth2client.service_account import ServiceAccountCredentials
scope = ['https://spreadsheets.google.com/feeds', 'https://www.googleapis.com/auth/drive']
credentials = ServiceAccountCredentials.from_json_keyfile_name('dotted-repeater-265113-12f31698144e.json',scope)
gc = gspread.authorize(credentials)
wks = gc.open('TESTING').sheet1
wks.append_row([email, last,,"skip cell",first,])```