在Thonny上打印一个随机数(Python)

时间:2018-05-02 15:33:12

标签: python-3.x

我刚刚开始编程所以我的问题可能听起来很糟糕......我正在尝试让计算机选择一个随机数并打印出来但是它在我的程序中不起作用...

import random
x = random.int  <--I thought it was like this ...
print(x)

1 个答案:

答案 0 :(得分:0)

尝试(从0.0到1.0):

import random
random.random()

或0到9之间的数字:

import random
random.randint(0,9)

更多信息:https://docs.python.org/2/library/random.html