0
How can we generate random numbers in Python?
2 ответов
+ 4
With the random module.
import random
print(random.randint(0,10))
will print a random number between 0 and 10 (inclusive).
+ 6
This question has been asked before, please use the searchbar.