码迷,mamicode.com
首页 > 其他好文 > 详细

模块、函数

时间:2015-07-20 10:36:42      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

math模块、cmath模块

floor:向下取整

ceil:向上取整

sqrt:求平方根

>>> import math
>>> math.floor(1.1)
1
>>> math.ceil(1.1)
2
>>> math.sqrt(1)
1.0
>>> math.sqrt(-1)
Traceback (most recent call last):
  File "<pyshell#17>", line 1, in <module>
    math.sqrt(-1)
ValueError: math domain error
>>> import cmath
>>> cmath.sqrt(-1)
1j
>>>

模块、函数

标签:

原文地址:http://www.cnblogs.com/liuhuan2368935760/p/4660546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!