编程语言
首页 > 编程语言> > arcmap将0-1的float随机数赋值给某字段(python)

arcmap将0-1的float随机数赋值给某字段(python)

作者:互联网

arcmap将0-1的float随机数赋值给某字段(python)

#生成随机整数1-5
def rando():
 
  import random
 
  rand=int(random.uniform(1,6))
 
  return rand

uniform() 方法将随机生成下一个实数,它在 [x, y) 范围内

参数

x 随机数的最小值,包含该值。
y 随机数的最大值,不包含该值。

随机值

Reference:
1.arcmap将随机数赋值给某字段(python).

标签:rand,某字段,python,float,arcmap,随机数,赋值
来源: https://blog.csdn.net/wjz8486/article/details/122159379