我刚刚开始编程所以我的问题可能听起来很糟糕......我正在尝试让计算机选择一个随机数并打印出来但是它在我的程序中不起作用...
import random
x = random.int <--I thought it was like this ...
print(x)
答案 0 :(得分:0)
尝试(从0.0到1.0):
import random
random.random()
或0到9之间的数字:
import random
random.randint(0,9)