标签: math numbers
我想用一些步骤产生数字, 例如,对于第4步,我想生成:
1 -> 0 3 -> 4 4.1 -> 4 15 -> 16 etc.
步骤0.2:
1 -> 1 3 -> 3 4.1 -> 4.2 15.99 -> 16 etc.
你知道很好的公式来产生这样的数字吗?
答案 0 :(得分:2)
看起来你只想round()到最近的step倍数。试试这个:
round()
step
result = round(num/step)*step