1 数字类型/定义
1.1 整形(int)
直接定义 |
|
python # 定义 十进制 整数 i1 = 99 print(i1) # 定义 八进制 整数 0b+ i2 = 0b1010 print(i2) # 定义 十六进制 整数 0x+ i3 = 0xa12c print(i3) # 整数可用 _ 间隔 方便阅读 i4 = 1_234_567 print(i4) |
python 99 10 41260 1234567 # 返回值都是十进制 |
转换定义 — int |
|
python str = '6' i = int(6) print(i) print(type(i)) |
python 6 <class 'int'> |
1.2 浮点型(float)
直接定义 |
|
python # 定义 浮点数 f1 = -26.3 print(f1) # 科学计数法 f2 = -26e-3 print(f2) f3 = 2e6 print(f3) |
python -26.3 # 表示 e前数 乘以 10 的 e后整数的次方 # -26 * 10 ** (-3) -0.026 2000000.0 # 返回值依然有小数点 |
浮点型数字的 bug |
|
python a = -26 * 10 ** (-3) print(a == -26e-3) print(a) print(-26e-3) |
python False -0.026000000000000002 -0.026 |
转换定义 — float |
|
python str = '6' i = float(6) print(i) print(type(i)) |
python 6 <class 'float'> |
1.3 复数(complex)
直接定义 |
|
python c1 = 3 + 6j print(type(c1)) print(c1) |
python <class 'complex'> (3+6j) |
函数创建 — complex |
|
python c1 = 3 + 6j # 函数创建 c2 = complex(3, 6) print(c2) print(c1 == c2) |
python (3+6j) True |
2 数字函数
2.0 数据类型(type isinstance)
返回数据类型 — type |
|
python c1 = 3 + 6j print(type(c1)) print(type({})) |
python <class 'complex'> <class 'dict'> |
判断数据是否为某种类型 — isinstance |
|
python # abc 是 str 返回 True print(isinstance('abc', str)) # abc 不是 int 返回 False print(isinstance('abc', int)) # 第二参数可通过元组,附加多条件 print(isinstance('abc', (int, str))) |
python True False True |
2.1 绝对值(abs)
绝对值 |
|
python print(abs(-13.56)) |
python 13.56 |
2.2 取整函数(round int)
取整函数 |
|
python # 四舍五入 print(round(-3.1)) # 向 0 取整 print(int(1.1)) print(int(-1.1)) |
python -3 1 -1 |
2.2 转换函数
函数 |
转换前 |
转换后 |
示例 |
|
注释 |
int |
数字字符串 |
整数 |
int('12') |
12 |
+ input 导入的数据只能是str 类型; |
|
|
|
int('3.14') |
报错 |
+ 数字字符串必须是整数格式; |
|
浮点型数字 |
|
int(3.99) |
3 |
+ 浮点型会向下取整; |
float |
数字字符串 |
浮点数 |
float('12') |
12.0 |
|
|
整数型数字 |
|
float(12) |
|
|
str |
数字 |
字符串 |
str(12.1) |
12.1 |
|
repr |
数字 |
表达式字符串 |
str(12.1) |
12.1 |
|
|
字符串 |
|
repr(a\tb) |
'a\tb' |
+ 保留引号、换行符、制表符,其他翻译; |
<font style="color:rgb(0, 0, 0);">hex</font> |
整数 |
十六进制字符串 |
hex(20) |
0x14 |
|
<font style="color:rgb(0, 0, 0);">oct</font> |
整数 |
八进制字符串 |
oct(20) |
024 |
3 math 模块
Python math 模块 | 菜鸟教程
4 random 模块
方法 |
说明 |
|
|
注释 |
seed(n) |
设定种子值,限制接下来所有random 的结果 |
|
|
|
random() |
生成随机数值 |
浮点数 |
[0, 1.0) |
|
uniform(a,b) |
|
浮点数 |
[a, b)/[b, a) |
+ a 可以比 b 大; |
randint(a,b) |
|
整数 |
[a, b] |
+ a 必须比 b 小; |
randrange([start=0],stop[,step=1]) |
|
整数 |
(0, b)/[a, b) |
+ randrange 示例 |
random.choice(sequence[,k=1]) |
生成随机元素/列表 |
序列、列表、元组、字符串 |
|
|
random.sample(sequence,k) |
|
列表 |
|
+ 获取 k 个不重复元素 |
random.shuffle(x) |
将列表中元素打乱 |
|
|
+ shuffle 示例 |
import random
a = 0
b = 10
c = 2
# ------------------- 一个参数 ------------------- #
random.randrange(b) # 返回(0, b]之间任一整数
# ------------------- 二个参数 ------------------- #
random.randrange(a, b) # 返回[a, b]之间任一整数
# ------------------- 三个参数 ------------------- #
random.randrange(a, b, c) # 返回[a, b]之间的整数,且只能是 a + n * c,其中 n 是整数
# ---------------- 可构建 randint ---------------- #
def randint(self, a, b):
return self.randrange(a, b+1) # randint 包含上限;randrange 不包含上限
import random
list_1 = ['python','java','c','c++']
random.shuffle(list_1)
print(list_1) # 返回:['c', 'python', 'java', 'c++']
Python random 模块 | 菜鸟教程
4.1 列表中选取(choice)
列表中选取 — choice |
|
python import random population = [1,3,5,7,9] # 从列表中随机选取数据,返回列表 print(random.choices(population)) print(random.choices(population, k=2)) # 加权重 print(random.choices(population, weights=[9,5,3,2,1])) # 加累计权重 print(random.choices(population, cum_weights=[1,2,3,4,5], k=10)) |
python [3] # k 的缺省值为 1 [3, 5] [1] # 即差值为其权重,差值为负,则不可能出现 [1, 7, 3, 9, 1, 3, 9, 5, 5, 9] # weights 或 cum_weights 只能使用一个 |