我對Python很新穎,目前正致力於創建數據比較腳本。我有以下格式用於CSV文件比較的Python腳本
CSV1(源系統)
EMP_ID, EMP_NAME, EMP_LOCATION
1,Sam J, Houston
2,Man T, Houston
3,Sub D, Chicago
4,Saggie D, New York
CSV2(遷移/目標)
EMP_ID, EMP_NAME, EMP_LOCATION
1,Sam J, Houston£[email protected]£
2,Man T, Houston
3,Sub D, Chicago
4,Saggie D, New York^^^
兩個文件我想比較結果是這樣的此
EMP_ID_S, EMP_ID_T, EMP_ID_STATUS, EMP_NAME_S, EMP_NAME_T, EMP_NAME_STATUS, EMP_LOCATION_S, EMP_LOCATION_T, EMP_LOCATION_STATUS
1,1,Matched,Sam J, Sam J, Matched, Houston, Houston£[email protected]£, Not Matched
4,4,Matched,Saggie D, Saggie D, New York, New York^^^, Not Matched
我已經找到文件比較腳本,但找不到這種類型的東西。
你有什麼試過?閱讀關於python中的'csv'模塊。 – void
向我們展示您到目前爲止所嘗試的內容,並請閱讀以下內容:[我如何提出一個好問題?](https://stackoverflow.com/help/how-to-ask) – Clonkex