如何在python随机中限制小数点后的位数

时间:2016-09-28 09:11:42

标签: python

我正在使用此代码:newAgent = [random.gauss(0, 1), random.gauss(0, 1)] 我想限制小数点后的位数。现在大约是20位。

1 个答案:

答案 0 :(得分:0)

答案很简单。只需使用round,然后使用, #Number of spaces指定地点。在这个例子中,我做了5个十进制空格。

import random
newAgent = [random.gauss(0, 1), random.gauss(0, 1)]
print(round(newAgent[0], 5), round(newAgent[1], 5))