Let say this in the input CSV file.
I would like to go over the Babys
column and change it to increasing number by 1.
what i did is to count how many row there are in the file, and run a for loop on all of them. But i cant figure out how to change the values
v = open(input.csv)
r=csv.reader(v)
numline = len(v.readlines())
print (numline)
for row in r:
if row["Baby"] == "Baby":
for i in range (1, numline):
print("test")