Python difflib 比较输出格式



使用 difflib.compare 与 python 比较两个文本文件。我知道比较基本上返回一个字符串列表。当字符串对第一个文本文件是唯一的时,它会在字符串前放置一个"-",当字符串对第二个文本文件是唯一的时,它会在字符串前放置一个"+"。

我的问题是我正在尝试编写一些代码来确定要保留的字符串。我目前开始在每个字符串中寻找"-",如果我找到它,我会执行一些逻辑来确定我是否要使用该字符串。如果我不打算使用它,那么我要么向下看一两行"+"。

在我几乎所有的情况下,"-"行都位于"+"行之前。但是现在我得到了"+"行在"-"行之前的情况。这抛弃了我的代码,因为它找不到正确的行来写入输出文本文件。有谁知道字符串如何写入数组背后的逻辑是基于先出现的行号吗?

ex//
majority of the time out put is this:
"-    color: #ffffff;"
"+    color: #785642;"
but rarely it does come out the opposite:
"+    color: #785642;"
"-    color: #ffffff;"
DIFFERENCE_OUTPUT = []
def find_differences(list1, list2):
    list1 = sorted(list1)
    list2 = sorted(list2)
    for diff in difflib.ndiff(list1,list2): 
        DIFFERENCE_OUTPUT.append(diff)
    for line in DIFFERENCE_OUTPUT:
        if line.startswith("-"):
            #I would suggest change the '-' to the name of the file and print line to see what is there
            line = line.replace('-','NAME of List')
            print(line)
            ****preform task
        elif line.startswith("+"):
            ****preform task
所有"

-"都应用于列表 1,所有"+"应用于列表 2。如果您在"-"之前看到"+",则表示 list2 具有输出,但 list1 没有,反之亦然。

相关内容

  • 没有找到相关文章

最新更新