- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章python difflib模块示例讲解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
difflib模块提供的类和方法用来进行序列的差异化比较,它能够比对文件并生成差异结果文本或者html格式的差异化比较页面,如果需要比较目录的不同,可以使用filecmp模块.
class difflib.SequenceMatcher 。
此类提供了比较任意可哈希类型序列对方法。此方法将寻找没有包含‘垃圾'元素的最大连续匹配序列.
通过对算法的复杂度比较,它由于原始的完形匹配算法,在最坏情况下有n的平方次运算,在最好情况下,具有线性的效率.
它具有自动垃圾启发式,可以将重复超过片段1%或者重复200次的字符作为垃圾来处理。可以通过将autojunk设置为false关闭该功能.
class difflib.Differ 。
此类比较的是文本行的差异并且产生适合人类阅读的差异结果或者增量结果,结果中各部分的表示如下:
class difflib.HtmlDiff 。
此类可以被用来创建HTML表格 (或者说包含表格的html文件) ,两边对应展示或者行对行的展示比对差异结果.
make_file(fromlines, tolines [, fromdesc][, todesc][, context][, numlines]) 。
make_table(fromlines, tolines [, fromdesc][, todesc][, context][, numlines]) 。
以上两个方法都可以用来生成包含一个内容为比对结果的表格的html文件,并且部分内容会高亮显示.
difflib.context_diff(a, b[, fromfile][, tofile][, fromfiledate][, tofiledate][, n][, lineterm]) 。
比较a与b(字符串列表),并且返回一个差异文本行的生成器 示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
>>> s1
=
[
'bacon\n'
,
'eggs\n'
,
'ham\n'
,
'guido\n'
]
>>> s2
=
[
'python\n'
,
'eggy\n'
,
'hamster\n'
,
'guido\n'
]
>>>
for
line
in
context_diff(s1, s2, fromfile
=
'before.py'
, tofile
=
'after.py'
):
... sys.stdout.write(line)
*
*
*
before.py
-
-
-
after.py
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
1
,
4
*
*
*
*
! bacon
! eggs
! ham
guido
-
-
-
1
,
4
-
-
-
-
! python
! eggy
! hamster
guido
|
difflib.get_close_matches(word, possibilities[, n][, cutoff]) 。
返回最大匹配结果的列表 。
示例:
1
2
3
4
5
6
7
8
9
|
>>> get_close_matches(
'appel'
, [
'ape'
,
'apple'
,
'peach'
,
'puppy'
])
[
'apple'
,
'ape'
]
>>>
import
keyword
>>> get_close_matches(
'wheel'
, keyword.kwlist)
[
'while'
]
>>> get_close_matches(
'apple'
, keyword.kwlist)
[]
>>> get_close_matches(
'accept'
, keyword.kwlist)
[
'except'
]
|
difflib.ndiff(a, b[, linejunk][, charjunk]) 。
比较a与b(字符串列表),返回一个Differ-style 的差异结果 示例:
1
2
3
4
5
6
7
8
9
10
11
12
|
>>> diff
=
ndiff(
'one\ntwo\nthree\n'
.splitlines(
1
),
...
'ore\ntree\nemu\n'
.splitlines(
1
))
>>>
print
''.join(diff),
-
one
? ^
+
ore
? ^
-
two
-
three
?
-
+
tree
+
emu
|
difflib.restore(sequence, which) 。
返回一个由两个比对序列产生的结果 。
示例 。
1
2
3
4
5
6
7
8
9
10
11
|
>>> diff
=
ndiff(
'one\ntwo\nthree\n'
.splitlines(
1
),
...
'ore\ntree\nemu\n'
.splitlines(
1
))
>>> diff
=
list
(diff)
# materialize the generated delta into a list
>>>
print
''.join(restore(diff,
1
)),
one
two
three
>>>
print
''.join(restore(diff,
2
)),
ore
tree
emu
|
difflib.unified_diff(a, b[, fromfile][, tofile][, fromfiledate][, tofiledate][, n][, lineterm]) 。
比较a与b(字符串列表),返回一个unified diff格式的差异结果. 。
示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
>>> s1
=
[
'bacon\n'
,
'eggs\n'
,
'ham\n'
,
'guido\n'
]
>>> s2
=
[
'python\n'
,
'eggy\n'
,
'hamster\n'
,
'guido\n'
]
>>>
for
line
in
unified_diff(s1, s2, fromfile
=
'before.py'
, tofile
=
'after.py'
):
... sys.stdout.write(line)
-
-
-
before.py
+
+
+
after.py
@@
-
1
,
4
+
1
,
4
@@
-
bacon
-
eggs
-
ham
+
python
+
eggy
+
hamster
guido
|
实际应用示例 。
比对两个文件,然后生成一个展示差异结果的HTML文件 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#coding:utf-8
'''
file:difflibeg.py
date:2017/9/9 10:33
author:lockey
email:lockey@123.com
desc:diffle module learning and practising
'''
import
difflib
hd
=
difflib.HtmlDiff()
loads
=
''
with
open
(
'G:/python/note/day09/0907code/hostinfo/cpu.py'
,
'r'
) as load:
loads
=
load.readlines()
load.close()
mems
=
''
with
open
(
'G:/python/note/day09/0907code/hostinfo/mem.py'
,
'r'
) as mem:
mems
=
mem.readlines()
mem.close()
with
open
(
'htmlout.html'
,
'a+'
) as fo:
fo.write(hd.make_file(loads,mems))
fo.close()
|
运行结果:
生成的html文件比对结果:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:http://blog.csdn.net/Lockey23/article/details/77913855 。
最后此篇关于python difflib模块示例讲解的文章就讲到这里了,如果你想了解更多关于python difflib模块示例讲解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我最近在我的机器上安装了 cx_Oracle 模块,以便连接到远程 Oracle 数据库服务器。 (我身边没有 Oracle 客户端)。 Python:版本 2.7 x86 Oracle:版本 11.
我想从 python timeit 模块检查打印以下内容需要多少时间,如何打印, import timeit x = [x for x in range(10000)] timeit.timeit("
我盯着 vs 代码编辑器上的 java 脚本编码,当我尝试将外部模块包含到我的项目中时,代码编辑器提出了这样的建议 -->(文件是 CommonJS 模块;它可能会转换为 ES6 模块。 )..有什么
我有一个 Node 应用程序,我想在标准 ES6 模块格式中使用(即 "type": "module" in the package.json ,并始终使用 import 和 export)而不转译为
我正在学习将 BlueprintJS 合并到我的 React 网络应用程序中,并且在加载某些 CSS 模块时遇到了很多麻烦。 我已经安装了 npm install @blueprintjs/core和
我需要重构一堆具有这样的调用的文件 define(['module1','module2','module3' etc...], function(a, b, c etc...) { //bun
我是 Angular 的新手,正在学习各种教程(Codecademy、thinkster.io 等),并且已经看到了声明应用程序容器的两种方法。首先: var app = angular.module
我正在尝试将 OUnit 与 OCaml 一起使用。 单元代码源码(unit.ml)如下: open OUnit let empty_list = [] let list_a = [1;2;3] le
我在 Angular 1.x 应用程序中使用 webpack 和 ES6 模块。在我设置的 webpack.config 中: resolve: { alias: { 'angular':
internal/modules/cjs/loader.js:750 return process.dlopen(module, path.toNamespacedPath(filename));
在本教程中,您将借助示例了解 JavaScript 中的模块。 随着我们的程序变得越来越大,它可能包含许多行代码。您可以使用模块根据功能将代码分隔在单独的文件中,而不是将所有内容都放在一个文件
我想知道是否可以将此代码更改为仅调用 MyModule.RED 而不是 MyModule.COLORS.RED。我尝试将 mod 设置为变量来存储颜色,但似乎不起作用。难道是我方法不对? (funct
我有以下代码。它是一个 JavaScript 模块。 (function() { // Object var Cahootsy; Cahootsy = { hello:
关闭。这个问题是 opinion-based 。它目前不接受答案。 想要改进这个问题?更新问题,以便 editing this post 可以用事实和引文来回答它。 关闭 2 年前。 Improve
从用户的角度来看,一个模块能够通过 require 加载并返回一个 table,模块导出的接口都被定义在此 table 中(此 table 被作为一个 namespace)。所有的标准库都是模块。标
Ruby的模块非常类似类,除了: 模块不可以有实体 模块不可以有子类 模块由module...end定义. 实际上...模块的'模块类'是'类的类'这个类的父类.搞懂了吗?不懂?让我们继续看
我有一个脚本,它从 CLI 获取 3 个输入变量并将其分别插入到 3 个变量: GetOptions("old_path=s" => \$old_path, "var=s" =
我有一个简单的 python 包,其目录结构如下: wibble | |-----foo | |----ping.py | |-----bar | |----pong.py 简单的
这种语法会非常有用——这不起作用有什么原因吗?谢谢! module Foo = { let bar: string = "bar" }; let bar = Foo.bar; /* works *
我想运行一个命令: - name: install pip shell: "python {"changed": true, "cmd": "python <(curl https://boot
我是一名优秀的程序员,十分优秀!