I have multiple .csv files of various departments, with same header (Name, Full Address, Department ), Full address is a long string around 20 - 50 words , it includes all details including city. Each of my .CSV file contain around 100K rows, and i have around 400 such files in same folder.
What i want to do is that i want to create a separate csv file for all the employees (after reading all csv files) who lives in New York, (the resultant file should contain Name, full address and department) manually it is not possible but i know it is possible in python.
Can anyone help me out with this?