gpt4 book ai didi

python - 在python中 float 为整数

转载 作者:太空宇宙 更新时间:2023-11-04 08:19:43 26 4
gpt4 key购买 nike

如果我想在 Python 中将 float 转换为整数,我应该使用什么函数?

问题是我必须使用通过函数 math.fabs 传递的变量(绝对值)作为列表的索引,因此它必须是 int,而函数 math.fabs 返回一个 float

最佳答案

使用 int() 构造函数:

>>> foo = 7.6
>>> int(foo)
7

请注意,如果您使用 built-in abs() function使用整数参数,您首先会得到一个整数结果:

>>> type(abs(-7))
<type 'int'>

关于python - 在python中 float 为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7621903/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com