gpt4 book ai didi

python - 将 float 比率转换为整数

转载 作者:太空宇宙 更新时间:2023-11-04 07:04:49 25 4
gpt4 key购买 nike

我需要将浮点比率转换为它们的等效整数

0.5:1 ---应该转换为 ---> 1:2

0.5:0.6:1 ---应该转换为 ---> 5:6:10(最小整数比)

我的谷歌搜索在这方面没有结果

最佳答案

float.as_integer_ratio:

In [1064]: f = .5                                                                                                                                                                                           

In [1065]: f.as_integer_ratio()
Out[1065]: (1, 2)

关于python - 将 float 比率转换为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56821119/

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