Random Number

>>> import random
>>> random.randint(1, 2)
2
>>> random.randint(1, 2)
1

Last updated

Was this helpful?