Numeric Type -- int, float, complex
时间:
2019-02-10 21:33:47
阅读:
224
评论:
收藏:
0
[点我收藏+]
-
复数:
-
标准库还提供了额外的数字类型:
-
fractions 有理数
-
decimal 可自定义精度的浮点数
-
操作数(除复数外):
-
注意:
-
涉及将整数分开,结果指向负无穷:1 // 2 = 0;-1 // 2 = 1
-
复数无法求余数
-
浮点数转为整数将被截断浮点;可使用定义明确的“math.floor()”、“math.ceil()”
-
pow(0, 0) = 0 ** 0 = 1
-
数字的字面量接受数字0-9或其他Unicode环境
-
Numeric Type -- int, float, complex
原文:https://www.cnblogs.com/ShuComputerProgram/p/10360197.html