主要记录一下与C语言不同的地方和特别需要注意的地方:
// 整除
** 乘方
整数没有长度限制,浮点数有长度限制
复数:
>>> 1j*1j
(-1+0j)
导入模块:
import
①import math #导入math中所有函数 使用时要用 math.sqrt()的形式
②from math import * #导入math中的所有函数, 可直接使用sqrt()
③from math import sqrt, tan #只导入sqrt和tan两个函数 推荐使用
>>> import math >>> math.sqrt(5) 2.23606797749979 >>> math.sqrt(2)*math.tan(22) 0.012518132023611912 >>> from math import * >>> log(25+5) 3.4011973816621555 >>> sqrt(4)*sqrt(100) 20.0 >>> from math import sqrt, tan >>> tan(20)*sqrt(4) 4.474321888449484
字符串: ‘ ’, “ ”, “““ ”””
len(): 求字符串长度 返回的是整形 不像C有个‘