gpt4 book ai didi

python - 在python中,我如何用小数点分割一个数字

转载 作者:IT老高 更新时间:2023-10-28 20:51:55 27 4
gpt4 key购买 nike

所以如果我跑:

a = b / c

并得到结果1.2234

我如何将它分开以便我拥有:

a = 1
b = 0.2234

最佳答案

>>> from math import modf
>>> b,a = modf(1.2234)
>>> print ('a = %f and b = %f'%(a,b))
a = 1.000000 and b = 0.223400
>>> b,a = modf(-1.2234)
>>> print ('a = %f and b = %f'%(a,b))
a = -1.000000 and b = -0.223400

关于python - 在python中,我如何用小数点分割一个数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3454085/

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