Python
语言是一种通用型的、解释型的、脚本语言。
Python
官网:https://www.python.org
使用Python
语言编写的程序, 需要使用Python解释器
来解释执行。
常见的Python解释器
:
在Python
中,一切皆对象。
类 | 实例 |
---|---|
int | 1 、10 、100 |
float | 0.1 、2.5 、10.0 |
complex | 2j 、3 + 4j |
str | 'haha' 、"haha" |
bool | True 、Flase 、bool(0) 、bool("") 、bool(...) |
range | range(1) 、range(1,10) 、range(1,10,2) |
tuple | () 、(1,) 、(1,2,3,5) 、1,2,3,5 |
list | [1,2,3,5] 、['a','b','c'] |
set | set() 、{1,2,3,5} 、{'a','b','c'} |
dict | {} 、{key1:value1, key2:value2} |
ellipsis | Ellipsis 、... |
NoneType | None |
function | def functionName(argList): |
module | import os |