import csv
out = open("/content/drive/MyDrive/My Data Files/Data.csv", 'a', newline='')
W = csv.writer(out)
W.writerow(["Binoy", 57])
out.close()
inn = open("/content/drive/MyDrive/My Data Files/Data.csv")
R = csv.reader(inn)
print(next(R))
L = list(R)
for row in L:
print(row)
inn.close()
!cp Data.csv "/content/drive/MyDrive/My Data Files"