我是python中的新手,我必须比较两个文件,但同时我如何忽略该比较中的特定字符串内容。 例如:
A.txt内容:
/usr/bin: line 5: user_input: command not found
/usr/bin: line 19: user_input: command not found
B.txt内容:
/usr/bin: line 51: user_input: command not found
/usr/bin: line 23: user_input: command not found
在比较这两个文件时,我想忽略行号。
如何使用类似于filecmp.dircmp(dir1,dir2,ignore)
的单个函数来执行目录。
在python中是否有任何函数我们也可以为文件执行此操作。