I have this code, I need to append the values to the columns in my google sheet and the values should be added at the end of the sheet in a new row without deleting existing datas
all_values = worksheet.get_all_values()
row_count = len(all_values)
sheet_range = "'{}'!{row}:{row}".format(worksheet.title, row=row_count+1+insert_count)
values = {
"Name": "Ford",
"Age": "34",
"Color": 'Blue'
}
worksheet.append_row(sheet_range, values)