我需要生成随机 3D 坐标,以便每次运行都有新的随机点。我正在尝试添加种子以避免每次都有相同的点。
到目前为止,我已经尝试过了
from random import *
rnd = random.Random(8)
x,y,z = 7.045,23.569,63.447
x1,y1,z1 = (rnd.uniform(x-3.5,x+3.5),rnd.uniform(y-3.5,y+3.5),rnd.uniform(z-3.5,z+3.5))
newcord = [x1,y1,z1]
print newcord
我究竟做错了什么?