python
牛啦你不走
这个作者很懒,什么都没留下…
展开
-
Python进阶 - 命名空间与作用域
本文详细讲解Python的命名空间,作用域,以及在使用中的一些常见困惑原创 2017-05-27 18:27:30 · 2072 阅读 · 0 评论 -
[译]The Python Tutorial#3. An Informal Introduction to Python
[译]The Python Tutorial#An Informal Introduction to Python翻译 2017-07-20 12:01:40 · 525 阅读 · 0 评论 -
[译]The Python Tutorial#4. More Control Flow Tools
The Python Tutorial More Control Flow Tools翻译翻译 2017-07-04 16:30:13 · 388 阅读 · 0 评论 -
[译]The Python Tutorial#5. Data Structures
The Python Tutorial#Data Structures 译文翻译 2017-07-05 16:09:39 · 424 阅读 · 0 评论 -
[译]The Python Tutorial#6. Modules
The Python Tutorial » 6. Modules 翻译翻译 2017-06-16 15:49:25 · 470 阅读 · 0 评论 -
[译]The Python Tutorial#7. Input and Output
The Python Tutorial#Input and Output 翻译 Python输入输出翻译 2017-07-10 17:10:21 · 456 阅读 · 0 评论 -
[译]The Python Tutorial#8. Errors and Exceptions
The Python Tutorial#Errors and Exceptions 翻译 Python错误及异常翻译 2017-07-07 11:16:06 · 422 阅读 · 0 评论 -
[译]The Python Tutorial#9. Classes
[译]The Python Tutorial#Classes 翻译翻译 2017-05-25 16:33:18 · 468 阅读 · 0 评论 -
[译]The Python Tutorial#10. Brief Tour of the Standard Library
The Python Tutorial#Brief Tour of the Standard Library 翻译翻译 2017-07-28 11:52:18 · 454 阅读 · 0 评论 -
[译]The Python Tutorial#11. Brief Tour of the Standard Library — Part II
The Python Tutorial#Brief Tour of the Standard Library — Part II 翻译翻译 2017-07-28 11:49:50 · 432 阅读 · 0 评论 -
[译]The Python Tutorial#2. Using the Python Interpreter
[译]The Python Tutorl#Using the Python Interpreter翻译翻译 2017-07-21 16:55:23 · 464 阅读 · 0 评论 -
[译]The Python Tutorial#1. Whetting Your Appetite
[译]The Python Tutorl#Whetting Your Appetite翻译翻译 2017-07-21 12:14:34 · 393 阅读 · 0 评论 -
Python进阶 - 对象,名字以及绑定
本文详细介绍了Python中的对象,名字,以及绑定原创 2017-05-26 18:11:37 · 1991 阅读 · 3 评论 -
Python进阶-函数默认参数
本文讲述了Python的默认参数,以及默认参数初始化,可变默认参数和不可变默认参数等高级特性原创 2017-05-25 16:48:25 · 625 阅读 · 0 评论 -
Python基础-__main__
本文讲解Python中一个特殊的值 __main__,以及其应用原创 2017-05-25 16:44:30 · 496 阅读 · 0 评论 -
Python基础-包与模块
1. 为重用以及更好的维护代码,`Python`使用了模块与包;一个`Python`文件就是一个模块,包是组织模块的特殊目录(包含`__init__.py`文件)。2. 模块搜索路径,`Python`解释器在特定的目录中搜索模块,运行时`sys.path`即搜索路径。3. 使用`import`关键字导入模块,注意 `import *`与`__all__`的关系。原创 2017-06-16 09:35:33 · 732 阅读 · 0 评论 -
Python基础-类变量和实例变量
本文详细介绍Python类变量和实例变量的区别与联系原创 2017-06-05 15:35:20 · 562 阅读 · 0 评论 -
Python基础-类
本文重点讲述如何创建和使用`Python`类,绑定方法与非绑定方法的区别,以及`Python`的多态与简单继承。原创 2017-06-28 17:51:04 · 389 阅读 · 0 评论 -
Python进阶-继承中的MRO与super
本文讲述`Python`继承关系中如何通过`super()`调用“父类”方法,`super(Type, CurrentClass)`返回`CurrentClass`的`MRO`中`Type`的下一个类的代理;以及如何设计`Python`类以便正确初始化。原创 2017-06-29 16:02:11 · 823 阅读 · 0 评论 -
Python基础-函数参数
本文详细介绍了函数的各种形参类型,包括位置参数,默认参数值,关键字参数,任意参数列表,命名关键字参数;也介绍了调用函数时传递实参的各种方式,包括位置实参,关键字实参以及使用\*和\**来解包序列和字典。原创 2017-06-30 19:05:57 · 614 阅读 · 0 评论 -
Base64及其Python实现
本文详细介绍了Base64编码的原理,最后给出其Python实现原创 2017-08-17 16:48:00 · 1529 阅读 · 0 评论 -
[译]The Python Tutorial#12. Virtual Environments and Packages
[译]The Python Tutorial#Virtual Environments and Packages 翻译翻译 2017-07-28 11:53:47 · 473 阅读 · 0 评论