I want to add data below the last value of row a. (pygsheet)

613 views Asked by At

sh[9].append(values=[claststr], start='a8') This code adds a column. I want to add a value to the next column with the last value of row 'a' or 'b'.enter image description here

1

There are 1 answers

2
Nithin On

you can use

wks.append_table(["claststr", None, None, None])

Or you can use

 wks.update_value( (1,len(wks[0])), "classstr")