python开发_difflib字符串比较

在python的difflib

HtmlDiff:比较后以html方法展示

我们比较的是字符串:

'hello world!' 和 'hElLO Wor2d!'

具体代码:

 1 from difflib import *
 2 import os
 3 
 4 def write():
 5      if os.path.exists('E:\\info.html'):
 6          with open('E:\\info.html','w+') as fp:
 7              test = HtmlDiff.make_file(HtmlDiff(), 'hello world!', 'hElLO Wor2d!')
 8              fp.write(test)
 9              print('生成文件成功!')
10              fp.close()
11              
12              
13 def main():
14     write()
15 
16 if __name__ == '__main__':
17     main()

differ

运行代码:

1 import difflib
2 
3 test = difflib.Differ().compare('hello world', 'HeLLO,wOrlD!')
4 print('横向展示:')
5 print(''.join(list(test)))
6 print('#' * 50)
7 test = difflib.Differ().compare('hello world', 'HeLLO,wOrlD!')
8 print('纵向展示:')
9 print('\n'.join(list(test)))

SquenceMatcher

运行代码:

 1 import difflib
 2 
 3 def test():
 4     test = difflib.SequenceMatcher(lambda x: x == " ", 'hello world', 'HeLLO,wOrlD!')
 5     for block in test.get_matching_blocks():
 6         print("a[%d] and b[%d] match for %d elements" % block)
 7 
 8 def main():
 9     test()
10 
11 if __name__ == '__main__':
12     main()

 

转载于:https://www.cnblogs.com/hongten/p/hongten_python_difflib.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值