人生苦短,我用 python
安装
在python官网,发现如下3个window版本(到底使用哪个呢?):
安装
在python官网,发现如下3个window版本(到底使用哪个呢?):
web-based installer (是需要通过联网完成安装的)
executable installer (是可执行文件(*.exe)方式安装)
embeddable zip file (嵌入式版本,可以集成到其它应用中)
推荐使用:executable installer
基本数据类型
python 相比其他语言,简化数据类型
数字 (整型int 浮点型float)
字符串
数字
加、减、乘、除
type(1+1) //int
type(1+1.0) //float
type(1*1) //int
type(1*1.0) //float
type(2-1) //int
type(2-1.0) //float
type(2/1) //float
type(2//1) //int
type(2//1.0) //float
转载请注明:XAMPP中文组官网 » Python 开始吧