Python 的 abs(~)
方法返回数字的绝对值。对于复数,它返回大小。
参数
1.x
| int
、float
或 complex
要返回其绝对值的数字。
返回值
数字的绝对值。对于复数,它返回大小。
例子
返回 -5
的绝对值:
x = -5
abs(x)
5
返回 -25.21
的绝对值:
y = -25.21
abs(y)
25.21
要返回复数 4 - 3j
的大小:
z = (4 - 3j)
abs(z)
5.0
请注意,这是一个幅度而不是绝对值。
相关用法
- Python abs()用法及代码示例
- Python NumPy absolute方法用法及代码示例
- Python NumPy abs方法用法及代码示例
- Python abc.ABCMeta用法及代码示例
- Python abc.abstractmethod用法及代码示例
- Python abc.abstractproperty用法及代码示例
- Python abc.abstractstaticmethod用法及代码示例
- Python abc.abstractclassmethod用法及代码示例
- Python abc.ABC用法及代码示例
- Python abc.ABCMeta.register用法及代码示例
- Python arcgis.gis._impl._profile.ProfileManager.save_as用法及代码示例
- Python arcgis.raster.functions.ccdc_analysis用法及代码示例
- Python arcgis.geometry.functions.trim_extend用法及代码示例
- Python arcgis.raster.analytics.sample用法及代码示例
- Python arcgis.features.analysis.derive_new_locations用法及代码示例
- Python arcgis.features.analyze_patterns.calculate_density用法及代码示例
- Python arcgis.geometry.Geometry.label_point用法及代码示例
- Python ast.MatchClass用法及代码示例
- Python arcgis.plan_routes用法及代码示例
- Python arcgis.mapping.forms.FormInfo用法及代码示例
- Python arcgis.gis.UserManager.get用法及代码示例
- Python arcgis.raster.ImageryLayerCacheManager.update_tiles用法及代码示例
- Python arcgis.geometry.Geometry.true_centroid用法及代码示例
- Python arcgis.gis.User.generate_direct_access_url用法及代码示例
- Python arcgis.gis.GroupMigrationManager.create用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python | abs method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。