标签:random模块 区别 int and -- 回顾 模块 知识点 imp
import random
s = random.randint(2,4)
print(s)
s的输出结果可能为 2,3,4
------------------------------------------------------------------------------------------------
import random
s1 = random.randrange(2,4)
print(s1)
s1的输出结果可能有2,3
但是没有4
--------------------------------------------------------------------------------------------------
这是两者在使用时的区别!
标签:random模块 区别 int and -- 回顾 模块 知识点 imp
原文地址:https://www.cnblogs.com/lijiaxu/p/9912115.html