1
I have a csv file, which contains several lines. Does anyone know what I should do to save to a new document, with some specific lines? One of the columns, 'yyyy', has data from 2015 to 2019. I would like to keep only the data for 2018.
Hugs
1
I have a csv file, which contains several lines. Does anyone know what I should do to save to a new document, with some specific lines? One of the columns, 'yyyy', has data from 2015 to 2019. I would like to keep only the data for 2018.
Hugs
Browser other questions tagged python python-3.x
You are not signed in. Login or sign up in order to post.
You could open one file for reading and another for recording, then making one
forto read line-by-line read file would just make oneifand write to the file only if you go through thisif– fernandosavio