I've been looking for a few hours now and not found what I'm looking for...
I'm looking to make a program that takes an already compiled .csv file with some information missing and asking the user what they would like to add and then placing this in the csv but not effecting the header line. Then saving the file with the additions.
It would look like (input):
data 1, data 2, data 3
2,,4
4,,6
6,,3
3,,2
program asks "what would you like in data 2 column?
answer: 5
(output):
data 1, data 2, data 3
2,5,4
4,5,6
6,5,3
3,5,2
All help highly appreciated.