目录
一、认识变量
二、认识运算符
三、数据的输入与输出
3.1 数据的输入
3.2 数据的普通输出
3.3 数据的格式化输出
四、拓展: 制作exe程序
五、常用内置函数操作
Python 支持五种基本数字类型:
1). 算术运算符:+,-,*,**, /, %, //
2). 赋值运算符:=, +=, -=, /=, *=, %=
3). 关系运算符: >, >=, <, <=, !=, ==
4). 逻辑运算符:逻辑与and, 逻辑或or, 逻辑非not
注意: = 和 == 的区别 ?
格式符 |
控制显示的类型 |
示例 |
%s |
字符串 |
print(“name=%s” %('python')) |
%b, %o, %x |
二, 八, 十六进制整数 |
print(“%b %o %x” %(9, 9, 9)) |
%d |
十进制整数 |
print(“age=%d” %(18)) |
%f |
浮点数 |
print(“pi=%f” %(3.14)) |
%e, %E |
科学计数法的浮点数 (基底写为e或者E) |
print(“年收入为: %e” %(100000000)) |
%% |
字符"%" |
print(“成功率: %f%%” %(99.9999)) |
准备工作:
1. 安装第三方模块 pyinstaller
2. 阿里巴巴矢量图标库(www.iconfont.cn)
3. 在线图片格式转换网站(https://www.easyicon.net/covert/)
PyInstaller 工具的命令语法如下:
> pyinstaller xxx.py
> pyinstaller -F xxx.py
> pyinstaller -F -i temper.ico xxx.py
1). 标准类型函数(cmp, str和 type): 可以用于所有的标准类型。
2). 转换工厂函数(int, long, float, bool和 complex)
3). 功能函数(abs, divmod, pow和 round)
4). 进制转换函数(bin, hex, oct)
5). ASCII转换函数(chr, ord)
相关拓展模块:
decimal, array, math, random