如何打印统一diff格式的两个多行字符串的比较?

And*_*cia 20 python diff unified-diff

你知道任何有助于这样做的图书馆吗?

我会编写一个函数,以统一的diff格式打印两个多行字符串之间的差异.像这样的东西:

def print_differences(string1, string2):
    """
    Prints the comparison of string1 to string2 as unified diff format.
    """
    ???
Run Code Online (Sandbox Code Playgroud)

用法示例如下:

string1="""
Usage: trash-empty [days]

Purge trashed files.

Options:
  --version   show program's version number and exit
  -h, --help  show this help message and exit
"""

string2="""
Usage: trash-empty [days]

Empty the trash can.

Options:
  --version   show program's version number and exit
  -h, --help  show this help message and exit

Report bugs to http://code.google.com/p/trash-cli/issues
"""

print_differences(string1, string2)
Run Code Online (Sandbox Code Playgroud)

这应该打印出类似的东西:

--- string1 
+++ string2 
@@ -1,6 +1,6 @@
 Usage: trash-empty [days]

-Purge trashed files.
+Empty the trash can.

 Options:
   --version   show program's version number and exit
Run Code Online (Sandbox Code Playgroud)

And*_*cia 28

这就是我解决的问题:

def _unidiff_output(expected, actual):
    """
    Helper function. Returns a string containing the unified diff of two multiline strings.
    """

    import difflib
    expected=expected.splitlines(1)
    actual=actual.splitlines(1)

    diff=difflib.unified_diff(expected, actual)

    return ''.join(diff)
Run Code Online (Sandbox Code Playgroud)


Nad*_*mli 24

你看过内置的python模块difflib了吗?看看这个例子