-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex6.html
More file actions
480 lines (433 loc) · 32.9 KB
/
index6.html
File metadata and controls
480 lines (433 loc) · 32.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
<!DOCTYPE html>
<html lang="cn">
<head>
<meta charset="utf-8" />
<title>python自动化测试人工智能</title>
<link rel="stylesheet" href="/theme/css/main.css" />
</head>
<body id="index" class="home">
<header id="banner" class="body">
<h1><a href="/">python自动化测试人工智能 </a></h1>
<nav><ul>
<li><a href="/category/ba-zi.html">八字</a></li>
<li><a href="/category/ce-shi.html">测试</a></li>
<li><a href="/category/ce-shi-kuang-jia.html">测试框架</a></li>
<li><a href="/category/common.html">common</a></li>
<li><a href="/category/da-shu-ju.html">大数据</a></li>
<li><a href="/category/feng-shui.html">风水</a></li>
<li><a href="/category/ji-qi-xue-xi.html">机器学习</a></li>
<li><a href="/category/jie-meng.html">解梦</a></li>
<li><a href="/category/linux.html">linux</a></li>
<li><a href="/category/python.html">python</a></li>
<li><a href="/category/shu-ji.html">书籍</a></li>
<li><a href="/category/shu-ju-fen-xi.html">数据分析</a></li>
<li><a href="/category/zhong-cao-yao.html">中草药</a></li>
<li><a href="/category/zhong-yi.html">中医</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<ol id="posts-list" class="hfeed" start="9">
<li><article class="hentry">
<header>
<h1><a href="/tk3.html" rel="bookmark"
title="Permalink to python GUI作业:使用tkinter的重要控件">python GUI作业:使用tkinter的重要控件</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-11-30T07:50:00+08:00">
Published: 五 30 十一月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/python.html">python</a>.</p>
</footer><!-- /.post-info --> <p><a href="https://china-testing.github.io/practices.html">python测试开发项目实战-目录</a></p>
<h3 id="1tkinter">题目1:使用tkinter的重要控件 绘制如下菜单:</h3>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-04df871f16b35b9f.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p>参考代码:</p>
<div class="highlight"><pre><span></span><span class="ch">#!/usr/bin/env python3</span>
<span class="c1"># -*- coding: utf-8 -*-</span>
<span class="c1"># 技术支持:https://www.jianshu.com/u/69f40328d4f0 </span>
<span class="c1"># 技术支持 https://china-testing.github.io/</span>
<span class="c1"># https://github.com/china-testing/python-api-tesing/blob/master/practices/tk/tk3.py</span>
<span class="c1"># 项目实战讨论QQ群630011153 144081101</span>
<span class="c1"># CreateDate: 2018-11-29</span>
<span class="kn">import</span> <span class="nn">tkinter</span> <span class="kn">as</span> <span class="nn">tk</span>
<span class="n">root</span> <span class="o">=</span> <span class="n">tk</span><span class="o">.</span><span class="n">Tk</span><span class="p">()</span>
<span class="n">root</span><span class="o">.</span><span class="n">title</span><span class="p">(</span><span class="s1">'tkinter控件'</span><span class="p">)</span>
<span class="c1">#create a …</span></pre></div>
<a class="readmore" href="/tk3.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/practices.html" rel="bookmark"
title="Permalink to python测试开发人工智能项目实战-目录">python测试开发人工智能项目实战-目录</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-11-30T07:25:00+08:00">
Published: 五 30 十一月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/python.html">python</a>.</p>
</footer><!-- /.post-info --> <ul>
<li><a href="https://china-testing.github.io/practices.html">python测试开发项目实战-目录</a></li>
<li><a href="https://china-testing.github.io/python_books.html">python工具书籍下载-持续更新</a></li>
<li><a href="https://china-testing.github.io/python3_quick.html">python 3.7极速入门教程 - 目录</a></li>
</ul>
<p>IT类技术学习的最好方法通常是练习。下面收集了一些一流企业实际工作的项目,供大家学习参考!</p>
<p>工作日技术支持QQ群 630011153 144081101</p>
<h3 id="_1">数据分析</h3>
<ul>
<li><a href="https://china-testing.github.io/merge_excel_rows.html">python数据分析工具pandas作业:合并excel重复行</a></li>
<li><a href="https://china-testing.github.io/merge_excel_rows2.html">python数据分析工具pandas作业:把多行合并成一行</a></li>
</ul>
<h3 id="python-gui">python GUI</h3>
<ul>
<li><a href="https://china-testing.github.io/tk2.html">python GUI作业:tkinter grid布局</a></li>
<li><a href="https://china-testing.github.io/tk1.html">python GUI作业:tkinter控件改变背景色</a></li>
<li><a href="https://china-testing.github.io/tk3.html">python GUI作业:使用tkinter的重要控件</a></li>
</ul>
<h3 id="python">python 网络</h3>
<ul>
<li><a href="https://china-testing.github.io/network_ping.html">python网络作业:使用python的socket库实现ICMP协议的ping</a></li>
<li><a href="https://china-testing.github.io/network_traceroute.html">python网络作业:使用python的socket库实现ICMP协议的traceroute</a></li>
</ul>
<h3 id="python_1">python 人工智能</h3>
<ul>
<li><a href="https://china-testing.github.io/ai_tts.html">python人工智能作业:Windows使用SAPI和tkinter用不到40行实现文本转语音</a></li>
<li>使用face_recognition进行人脸识别 <a href="https://china-testing.github.io/python3_lib_face_recognition.html">参考</a></li>
<li>计算机视觉opcencv工具人脸识别 <a href="https://china-testing.github.io/opencv_crash_deep_learning1.html">参考</a></li>
<li>使用pytesseract进行OCR光学字符识别 <a href="https://china-testing.github.io/python3_lib_pytesseract.html">python库介绍-pytesseract: OCR光学字符识别</a></li>
<li>python opencv工具作业:使用tkinter展示边缘检测 <a href="https://china-testing.github.io/cv1.html">参考 …</a></li></ul>
<a class="readmore" href="/practices.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/conda_pip_compare.html" rel="bookmark"
title="Permalink to python包管理工具:Conda和pip比较">python包管理工具:Conda和pip比较</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-11-29T08:20:00+08:00">
Published: 四 29 十一月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/python.html">python</a>.</p>
</footer><!-- /.post-info --> <p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-25623c3d88871cdf.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<ul>
<li><a href="https://china-testing.github.io/practices.html">python测试开发项目实战-目录</a></li>
<li><a href="https://china-testing.github.io/python_books.html">python工具书籍下载-持续更新</a></li>
<li><a href="https://china-testing.github.io/python3_quick.html">python 3.7极速入门教程 - 目录</a></li>
</ul>
<p>Conda和pip通常被认为几乎完全相同。虽然这两个工具的某些功能重叠,但它们设计用于不同的目的。 <a href="https://pip.pypa.io/en/stable/">Pip</a>是Python Packaging Authority推荐的用于从<a href="https://pypi.org/">Python Package Index</a>安装包的工具。 Pip安装打包为wheels或源代码分发的Python软件。后者可能要求系统安装兼容的编译器和库。</p>
<p><a href="https://conda.io/docs/">Conda</a>是跨平台的包和环境管理器,可以安装和管理来自<a href="https://repo.anaconda.com/">Anaconda repository</a>以 <a href="https://anaconda.org/">Anaconda Cloud</a>的conda包。 Conda包是二进制文件,徐需要使用编译器来安装它们。另外,conda包不仅限于Python软件。它们还可能包含C或C ++库,R包或任何其他软件。</p>
<p>这是conda和pip之间的关键区别。 Pip安装Python包,而conda安装包可能包含用任何语言编写的软件的包。在使用pip之前,必须通过系统包管理器或下载并运行安装程序来安装Python解释器。而Conda可以直接安装Python包以及Python解释器。</p>
<p>另一个区别是conda能够创建可以包含不同版本的Python或其他软件包的隔离环境。在使用数据科学工具时,这非常有用,因为不同的工具可能包含冲突的要求,这些要求可能会阻止它们全部安装到单个环境中。 Pip没有内置的环境支持,而是依赖于<a href="https://virtualenv.pypa.io/en/latest/">virtualenv</a>或 …</p>
<a class="readmore" href="/conda_pip_compare.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/tk2.html" rel="bookmark"
title="Permalink to python GUI作业:tkinter grid布局">python GUI作业:tkinter grid布局</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-11-28T07:30:00+08:00">
Published: 三 28 十一月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/python.html">python</a>.</p>
</footer><!-- /.post-info --> <ul>
<li><a href="https://china-testing.github.io/practices.html">python测试开发项目实战-目录</a></li>
<li><a href="https://china-testing.github.io/python_books.html">python工具书籍下载-持续更新</a></li>
<li><a href="https://china-testing.github.io/python3_quick.html">python 3.7极速入门教程 - 目录</a></li>
</ul>
<h3 id="_1">要求</h3>
<p>使用tkinter生成如下窗口:</p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-90fbd70ee2f32b19.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-1516a3f750b2af34.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-5c011adbfd85d1b9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-494076825345c2b3.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<h3 id="_2">参考资料</h3>
<ul>
<li><a href="https://china-testing.github.io/tk2.html">本文最新版本地址</a></li>
<li><a href="https://github.com/china-testing/python-api-tesing">本文涉及的python测试开发库</a> 谢谢点赞!</li>
<li><a href="https://github.com/china-testing/python-api-tesing/blob/master/books.md">本文相关海量书籍下载</a> </li>
<li><a href="https://china-testing.github.io/python_books.html">python工具书籍下载-持续更新</a></li>
<li><a href="https://china-testing.github.io/python_gui_books.html">python GUI工具书籍下载-持续更新</a></li>
</ul>
<h3 id="_3">参考代码</h3>
<div class="highlight"><pre><span></span><span class="ch">#!/usr/bin/python3</span>
<span class="c1"># -*- coding: utf-8 -*-</span>
<span class="c1"># 技术支持:https://www.jianshu.com/u/69f40328d4f0 </span>
<span class="c1"># 技术支持 https://china-testing.github.io/</span>
<span class="c1"># https://github.com/china-testing/python-api-tesing/blob/master/practices/tk/tk2.py</span>
<span class="c1"># 项目实战讨论QQ群630011153 144081101</span>
<span class="c1"># CreateDate: 2018-11-27</span>
<span class="kn">import …</span></pre></div>
<a class="readmore" href="/tk2.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/tk1.html" rel="bookmark"
title="Permalink to python GUI作业:tkinter控件改变背景色">python GUI作业:tkinter控件改变背景色</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-11-28T07:20:00+08:00">
Published: 三 28 十一月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/python.html">python</a>.</p>
</footer><!-- /.post-info --> <ul>
<li><a href="https://china-testing.github.io/practices.html">python测试开发项目实战-目录</a></li>
<li><a href="https://china-testing.github.io/python_books.html">python工具书籍下载-持续更新</a></li>
<li><a href="https://china-testing.github.io/python3_quick.html">python 3.7极速入门教程 - 目录</a></li>
</ul>
<h3 id="_1">要求</h3>
<p>使用tkinter生成如下窗口:</p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-b107f1052f9ad201.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-edceb8f49a1d2b29.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p>在右上角文本框输入名字,在旁边的下拉框选择数字,点击"Click Me!", "Click Me!"的文本将改变成如下:</p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-f5b26250186636ba.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p>可以选择"Unchecked"和"Enabled"的其中一个。</p>
<p>点击Blue、Gold、Red其中的一个,将会改变背景为对应的颜色。</p>
<p>最下面的文本框可以输入文本,当列数超出范围时,可以通过滚动条操作。</p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-97d7f6115d7ec2aa.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<h3 id="_2">参考资料</h3>
<ul>
<li><a href="https://china-testing.github.io/tk1.html">本文最新版本地址</a></li>
<li><a href="https://github.com/china-testing/python-api-tesing">本文涉及的python测试开发库</a> 谢谢点赞!</li>
<li><a href="https://github.com/china-testing/python-api-tesing/blob/master/books.md">本文相关海量书籍下载</a> </li>
<li><a href="https://china-testing.github.io/python_books.html">python工具书籍下载-持续更新</a></li>
<li><a href="https://china-testing.github.io/python_gui_books.html">python GUI工具书籍下载-持续更新</a></li>
</ul>
<h3 id="_3">参考代码</h3>
<div class="highlight"><pre><span></span><span class="ch">#!/usr/bin/python3</span>
<span class="c1"># -*- coding: utf-8 -*-</span>
<span class="c1"># 技术支持:https://www.jianshu.com/u/69f40328d4f0 </span>
<span class="c1"># 技术支持 …</span></pre></div>
<a class="readmore" href="/tk1.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_gui_books.html" rel="bookmark"
title="Permalink to python GUI工具书籍下载-持续更新">python GUI工具书籍下载-持续更新</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-11-27T18:20:00+08:00">
Published: 二 27 十一月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/python.html">python</a>.</p>
</footer><!-- /.post-info --> <ul>
<li><a href="https://china-testing.github.io/practices.html">python测试开发项目实战-目录</a></li>
<li><a href="https://china-testing.github.io/python_books.html">python工具书籍下载-持续更新</a></li>
<li><a href="https://china-testing.github.io/python3_quick.html">python 3.7极速入门教程 - 目录</a></li>
</ul>
<p><a href="https://itbooks.pipipan.com/fs/18113597-321973435">Python GUI Programming Cookbook 2nd - 2017.pdf</a></p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-99cff31bfd2fbf37.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p>https://github.com/PacktPublishing/Python-GUI-Programming-Cookbook-Second-Edition 60星左右</p>
<p><a href="https://itbooks.pipipan.com/fs/18113597-321973525">WxPython_Application_Development_Cookbook - 2015.pdf</a></p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-38a5a22981458f32.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p>https://github.com/driscollis/wxPython_recipes_book_code 20星左右</p>
<p><a href="https://itbooks.pipipan.com/fs/18113597-321973518">wxPython Recipes - 2017.pdf</a></p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-12c941b5ec54c261.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><a href="https://itbooks.pipipan.com/fs/18113597-321973506">Tkinter GUI Programming By Example(conv) - 2018.pdf</a></p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-31a213f4540af659.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p>https://github.com/PacktPublishing/Tkinter-GUI-Programming-by-Example 不到10星</p>
<p><a href="https://itbooks.pipipan.com/fs/18113597-321973498">Tkinter GUI Application Development …</a></p>
<a class="readmore" href="/python_gui_books.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/list_tuple_compare.html" rel="bookmark"
title="Permalink to python经典面试题:列表和元组有什么异同?">python经典面试题:列表和元组有什么异同?</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-11-27T05:20:00+08:00">
Published: 二 27 十一月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/python.html">python</a>.</p>
</footer><!-- /.post-info --> <ul>
<li><a href="https://china-testing.github.io/practices.html">python测试开发项目实战-目录</a></li>
<li><a href="https://china-testing.github.io/python_books.html">python工具书籍下载-持续更新</a></li>
<li><a href="https://china-testing.github.io/python3_quick.html">python 3.7极速入门教程 - 目录</a></li>
</ul>
<p>列表和元组是Python中最常用的两种数据结构,字典是第三种。 相同点:</p>
<ul>
<li>都是序列</li>
<li>都可以存储任何数据类型</li>
<li>可以通过索引访问</li>
</ul>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-32a6c6361069d513.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<h3 id="_1">语法差异</h3>
<p>使用方括号[]创建列表,而使用括号()创建元组。 请看以下示例:</p>
<div class="highlight"><pre><span></span><span class="o">>>></span> <span class="n">l</span> <span class="o">=</span> <span class="p">[</span><span class="s2">"https://china-testing.github.io/"</span><span class="p">,</span> <span class="s2">"https://www.oscobo.com/"</span><span class="p">]</span>
<span class="o">>>></span> <span class="n">t</span> <span class="o">=</span> <span class="p">(</span><span class="s2">"https://china-testing.github.io/"</span><span class="p">,</span> <span class="s2">"https://www.oscobo.com/"</span><span class="p">)</span>
<span class="o">>>></span> <span class="k">print</span><span class="p">(</span><span class="n">l</span><span class="p">)</span>
<span class="p">[</span><span class="s1">'https://china-testing.github.io/'</span><span class="p">,</span> <span class="s1">'https://www.oscobo.com/'</span><span class="p">]</span>
<span class="o">>>></span> <span class="k">print</span><span class="p">(</span><span class="n">t</span><span class="p">)</span>
<span class="p">(</span><span class="s1">'https://china-testing …</span></pre></div>
<a class="readmore" href="/list_tuple_compare.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_ide.html" rel="bookmark"
title="Permalink to 2018 最佳python编辑器和IDE">2018 最佳python编辑器和IDE</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-11-25T18:55:00+08:00">
Published: 日 25 十一月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/python.html">python</a>.</p>
</footer><!-- /.post-info --> <p>IDE没有统一的标准,自己习惯就是最好的。本文列出一些较常用的IDE,供大家参考。</p>
<p>一般而言,WingIDE、PyCharm、Spyder、Vim是比较常用的IDE。</p>
<h3 id="spyder">Spyder</h3>
<p>Spyder是Python(x,y)的作者为它开发的一个简单的集成开发环境。和其他的Python开发环境相比,它最大的优点就是模仿MATLAB的"工作空间"的功能,可以很方便地观察和修改数组的值。</p>
<p>最出名的python数据科学发行版本Anaconda自带了Spyder。</p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-3e6b7b8166cb6a1b.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-e28762f5ccc6a0db.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p>https://github.com/spyder-ide/spyder</p>
<p>.</p>
<h3 id="wingide">WingIDE</h3>
<p>WingIDE是Python编写的python专用IDE。 WingIDE提供诸如强大的代码完成,出色的调试器等功能,并且它还可以在Python中编写脚本和扩展。</p>
<p>为什么选择最好的Python IDE?</p>
<ul>
<li>内置强大的调试器</li>
<li>智能编辑器</li>
<li>您可以轻松快速地查找和修复错误</li>
<li>轻松导航代码</li>
<li>您可以使用自己喜欢的键绑定进行编辑并自定义工作区</li>
<li>配置简单</li>
<li>运行速度比Pycharm等java类的编辑快很多,占用资源少。</li>
</ul>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-f649b0d32b0cea41.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p>有社区版免费使用,<a href="https://github.com/china-testing/python-api-tesing/blob/master/other/wingide6_python3_crack.py">专业版的破解</a></p>
<p>https://wingware.com/</p>
<h3 id="vim-ide">Vim IDE</h3>
<p>Vim是一个高度可配置的文本编辑器,用于创建和更改任何类型的文本非常有效。</p>
<p>它是Vi的超集 …</p>
<a class="readmore" href="/python_ide.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_books.html" rel="bookmark"
title="Permalink to python工具书籍下载-持续更新">python工具书籍下载-持续更新</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-11-24T18:20:00+08:00">
Published: 六 24 十一月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/python.html">python</a>.</p>
</footer><!-- /.post-info --> <ul>
<li><a href="https://china-testing.github.io/python3_quick.html">本文教程目录</a></li>
<li><a href="https://china-testing.github.io/practices.html">python测试开发项目实战-目录</a></li>
<li><a href="https://china-testing.github.io/python_books.html">python工具书籍下载-持续更新</a></li>
</ul>
<p>呕心沥血,持续收集python精品书籍,觉得不错的话,请在下面点喜欢收藏,谢谢!</p>
<p><a href="https://china-testing.github.io/python_structure_books.html">python数据结构基础工具书籍下载-持续更新</a></p>
<p><a href="https://china-testing.github.io/ai_books.html">2018最佳人工智能机器学习工具书籍及下载(持续更新)</a></p>
<p><a href="https://china-testing.github.io/opencv_books.html">2018最佳人工智能图像处理工具OpenCV书籍下载</a></p>
<p><a href="https://china-testing.github.io/flask_books.html">web开发工具flask中文英文书籍下载-持续更新</a></p>
<p><a href="https://china-testing.github.io/python_network_books.html">python网络基础工具书籍下载-持续更新</a></p>
<p><a href="https://china-testing.github.io/python3_quick9.html">python 3.7极速入门教程9最佳python中文工具书籍下载</a></p>
<p><a href="https://china-testing.github.io/pytorch_books.html">机器学习工具pytorch中文英文工具书籍下载-持续更新</a></p>
<p><a href="https://china-testing.github.io/selnium_books.html">2018最佳selenium工具书籍汇总下载(持续更新)</a></p>
<p><a href="https://china-testing.github.io/datas_books.html">python数据分析数据科学中文英文工具书籍下载-持续更新</a></p>
<p><a href="https://china-testing.github.io/scrap_books.html">2018最佳人工智能数据采集(爬虫)工具书下载</a></p>
<p><a href="https://china-testing.github.io/python_gui_books.html">python GUI工具书籍下载-持续更新</a></p>
<p>部分示例</p>
<h3 id="pandas-0234-pdf"><a href="https://itbooks.pipipan.com/fs/18113597-319756702">pandas 0.23.4 官方文档.pdf</a></h3>
<h3 id="python-data-science-handbook-2017pdf"><a href="https://itbooks.pipipan.com/fs/18113597-304379322">Python Data Science Handbook - 2017.pdf</a></h3>
<ul>
<li>中文版待上传</li>
</ul>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-b0ccae58ef79a1e7.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p>《Python数据科学手册》是对以数据深度需求为中心的科学、研究以及针对计算和统计方法的参考书。本书共五章,每章介绍一到两个Python数据科学中的重点工具包。首先从IPython和Jupyter开始,它们提供了数据科学家需要的计算环境;第 2章讲解能提供ndarray对象的NumPy,它可以用Python高效地存储和操作大型数组 …</p>
<a class="readmore" href="/python_books.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
<li><article class="hentry">
<header>
<h1><a href="/python_structure_books.html" rel="bookmark"
title="Permalink to python数据结构基础工具书籍下载-持续更新">python数据结构基础工具书籍下载-持续更新</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2018-11-24T08:20:00+08:00">
Published: 六 24 十一月 2018
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/andrew.html">andrew</a>
</address>
<p>In <a href="/category/python.html">python</a>.</p>
</footer><!-- /.post-info --> <p><a href="https://china-testing.github.io/python_books.html">python工具书籍下载-持续更新</a></p>
<p><a href="https://itbooks.pipipan.com/fs/18113597-321523035">算法图解 - 2017.pdf</a></p>
<p>本书示例丰富,图文并茂,以让人容易理解的方式阐释了算法,旨在帮助程序员在日常项目中更好地发挥算法的能量。书中的前三章将帮助你打下基础,带你学习二分查找、大O表示法、两种基本的数据结构以及递归等。余下的篇幅将主要介绍应用广泛的算法,具体内容包括:面对具体问题时的解决技巧,比如,何时采用贪婪算法或动态规划;散列表的应用;图算法;Kzui近邻算法。</p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-d0130f297186ca99.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><a href="https://itbooks.pipipan.com/fs/18113597-321523014">数据结构与算法__Python语言描述-2015.pdf</a></p>
<p>本书基于Python语言介绍了数据结构与算法的基本知识,主要内容包括抽象数据类型和Python面向对象程序设计、线性表、字符串、栈和队列、二叉树和树、集合、排序以及算法的基本知识。本书延续问题求解的思路,从解决问题的目标来组织教学内容,注重理论与实践的并用。</p>
<p><img alt="图片.png" src="https://upload-images.jianshu.io/upload_images/12713060-649d4ae56ca30f50.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240"></p>
<p><a href="https://itbooks.pipipan.com/fs/18113597-321522934">Python算法教程 - 2016.pdf</a></p>
<p>Python是一种面向对象、解释型计算机程序设计语言,其应用领域非常广泛,包括数据分析、自然语言处理、机器学习、科学计算以及推荐系统构建等。 本书用Python语言来讲解算法的分析和设计。本书主要关注经典的算法,但同时会为读者理解基本算法问题和解决问题打下很好的基础。全书共11章。分别介绍了树、图、计数问题 …</p>
<a class="readmore" href="/python_structure_books.html">read more</a>
</div><!-- /.entry-content -->
</article></li>
</ol><!-- /#posts-list -->
<p class="paginator">
<a href="/index5.html">«</a>
Page 6 / 21
<a href="/index7.html">»</a>
</p>
</section><!-- /#content -->
<section id="extras" class="body">
<div class="blogroll">
<h2>links</h2>
<ul>
<li><a href="https://china-testing.github.io/testing_training.html">自动化性能接口测试线上及深圳培训与项目实战 qq群:144081101 591302926</a></li>
<li><a href="http://blog.sciencenet.cn/blog-2604609-1112306.html">pandas数据分析scrapy爬虫 521070358 Py人工智能pandas-opencv 6089740</a></li>
<li><a href="http://blog.sciencenet.cn/blog-2604609-1112306.html">中医解梦看相八字算命qq群 391441566 csdn书籍下载-python爬虫 437355848</a></li>
</ul>
</div><!-- /.blogroll -->
</section><!-- /#extras -->
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
Proudly powered by <a href="http://getpelican.com/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>.
</address><!-- /#about -->
<p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p>
</footer><!-- /#contentinfo -->
</body>
</html>