Python 支持三种不同的数值类型:
整型(Int) - 通常被称为是整型或整数,是正或负整数,不带小数点。Python3 整型是没有限制大小的,可以当作 Long 类型使用,所以 Python3 没有 Python2 的 Long 类型。
浮点型(float) - 浮点型由整数部分与小数部分组成,浮点型也可以使用科学计数法表示(2.5e2 = 2.5 x 102 = 250)
复数( (complex)) - 复数由实数部分和虚数部分构成,可以用a + bj,或者complex(a,b)表示, 复数的实部a和虚部b都是浮点型。
有时候,我们需要对数据内置的类型进行转换,数据类型的转换,你只需要将数据类型作为函数名即可。
int(x) 将x转换为一个整数。
float(x) 将x转换到一个浮点数。
complex(x) 将x转换到一个复数,实数部分为 x,虚数部分为 0。
complex(x, y) 将 x 和 y 转换到一个复数,实数部分为 x,虚数部分为 y。x 和 y 是数字表达式。
以下实例将浮点数变量 a 转换为整数:
>>> a = 2.0 >>> int(a) 2
在Python中,可对整数执行加(+ )减(- )乘(* )除(/ )运算。
message = "One of Python's strengths is its diverse community." print(message) One of Python's strengths is its diverse community. message = 'One of Python's strengths is its diverse community.' print(message)
File "apostrophe.py", line 1
message = 'One of Python's strengths is its diverse community.'
^❶ SyntaxError: invalid syntax
>>> python2.7 >>> print "Hello Python 2.7 world!" Hello Python 2.7 world! >>> 2 + 3 5 >>> 3 - 2 1 >>> 2 * 3 6 >>> 3 / 2 1.5
python内置三角,数学,随机数,函数可以参考文档。