0
Can anyone explain?
what is randint function in python?
1 Respuesta
+ 8
from the docs
https://docs.python.org/3/library/random.html
random.randint(a, b):
Return a random integer N such that a <= N <= b. Alias for randrange(a, b+1).
pretty straightforward
just return a random number inside a given range