>>>a=6 #变量定义与赋值>>>a6>>>b = 3*a #变量运算与赋值>>>b18>>>type(a) #type函数用于检测变量类型<class 'int'>>>> b = True #布尔类型<class 'bool'>>>> c = 3.14 #浮点数类型>>> type(c)<class 'float'>>>> d = 'www.vevb.com'>>> type(d)<class 'str'>>>> e = ['a','b','c'] #列表类型>>> type(e)<class 'list'>>>> f = ('x','y','z') #元组类型>>> type(f)<class 'tuple'>>>> g = {'a':'1','b':'2','c':'3'} #字典类型>>> type(g)<class 'dict'>>>>
>>> abs(-2) #求绝对值(系统函数)2>>> pow(2,4) #计算2的4次方(系统函数)16.0>>> round(3.4) #round四舍五入运算(系统函数)3>>> round(3.5) #round四舍五入运算4>>> import math #使用import语句可以引入math模块进行运算>>> dir(math) #查看库中所有东西['__doc__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'gcd', 'hypot', 'inf', 'isclose', 'isfinite', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'log2', 'modf', 'nan', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'tau', 'trunc']>>> piTraceback (most recent call last): File "<pyshell#1>", line 1, in <module> piNameError: name 'pi' is not defined>>> math.pi3.141592653589793>>> from math import *>>> pi3.141592653589793>>>>>> sqrt(9) #sqrt计算开方3.0>>> ceil(3.1) #ceil向上取整4>>> floor(3.9) #floor向下取整3>>> fmod(7,4) # fmod取余数3.0