How to compare and sort 2 csv's to show difference

后端 未结 4 2014
我在风中等你
我在风中等你 2021-01-24 18:28

Hi I have 2 csv\'s in the following format, (basically a list of email and the number of times we have been emailed by that sender):

file1.csv

Email,Val         


        
4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-24 19:15

    1. build a loop running through each line from the first file.

    2. in that loop, build another loop comparing each line of the second file to the current line of the first file.

    3. write matches to your new file.

提交回复
热议问题