1. 常见类型1.1 数字在Python中最数字是一种常见的类型。
1.1.1加减乘除运算print(3 + 2) # 5
print(8 - 6) # 2
print(16 - 3 * 2) # 10
print((17 - 2) / 5
2020-09-01