Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不能使用 Python 中 Random 模块中的函数 random.random。当我尝试使用 yhe 模块中的任何功能时,我得到以下信息:
import random x = random.random x <built-in method random of Random object at 0x02452D40>
线
x = random.random
只是将变量赋值x为函数对象random.random。我怀疑您实际上可能想要调用该函数,这将是
x
random.random
x = random.random()
您应该使用random.random()for show 来显示终端中的随机数。此外,如果您想设置可以使用的数字范围randint(firts, last)
random.random()
randint(firts, last)