mirror of
https://github.com/Estom/notes.git
synced 2026-02-13 15:26:33 +08:00
10 lines
468 B
Markdown
10 lines
468 B
Markdown
> * [pythonguru](https://pythonguru.apachecn.org/#/)
|
||
> * [官方教程](https://docs.python.org/zh-cn/3/tutorial/)
|
||
> * [标准库API](https://docs.python.org/zh-cn/3/library/index.html)
|
||
|
||
|
||
> python3中所有的数据类型都是对象。包括数值类型(int,float,complex)、列表、字典、元组、集合等。包括函数也是对象。
|
||
|
||
> python3中所有的内建类的对象,不具有动态属性。所有的自定义类的对象,都有动态属性。
|
||
|