栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

python中的负战俘

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

python中的负战俘

(-1.07)1.3将不是实数,因此出现Math域错误。

如果需要复数,则必须将a b重写为e bln a,例如

>>> import cmath>>> cmath.exp(1.3 * cmath.log(-1.07))(-0.6418264288034731-0.8833982926856789j)

如果只想返回NaN,请捕获该异常。

>>> import math>>> def pow_with_nan(x, y):...   try:...     return math.pow(x, y)...   except ValueError:...     return float('nan')...>>> pow_with_nan(1.3, -1.07)   # 1.3 ** -1.070.755232399659047>>> pow_with_nan(-1.07, 1.3)   # (-1.07) ** 1.3nan

顺便说一句,在Python中,通常

a ** b
不是使用内置函数来增强功能
math.pow(a, b)

>>> 1.3 ** -1.070.755232399659047>>> (-1.07) ** 1.3Traceback (most recent call last):  File "<stdin>", line 1, in <module>ValueError: negative number cannot be raised to a fractional power>>> (-1.07+0j) ** 1.3(-0.6418264288034731-0.8833982926856789j)


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/641413.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号