say i already had a csv file with rows 0-3 filled in on 4 columns how do i write to the 4th row without overwriting the others using csv.writer
for example
Kieran,3,10,7
ben,4,8,5
ethan,9,1,4
a = c.writer(Class)
data = [[row[1],row[2],row[3],average]]
a.writerows(data)
oliver,7,2,3
how do i write a 4th number in? thanks to a different row in the same column