1
我正在嘗試合併文件並對其進行一些更改。 舉例來說,如果我有文件:合併文件並將其差異化爲Python中的新文件
This is Line 1
This is Line 2
This is Line 3
,我已經把它改爲:
This is Line 1
This is Line 3
This one is another line
我會得到從difflib.unified_diff
這個輸出:
--- test.txt
+++ test2.txt
@@ -29,1 +29,1 @@
[email protected]@ -36,0 +36,4 @@
+o+n+e+ @@ -39,1 +43,9 @@
-L+a+n+o+t+h+e+r+ [email protected]@ -43,2 +55,0 @@
- -3
我想只能得到這個輸出和原始文件,並將它們合併成第二個文件。
有什麼辦法可以實現這個目標嗎?