how take random number from user in python code example
Example 1: n random numbers python
>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]
Example 2: random number pythn
import random
n = random.randint(0,22)
print(n)
# Output: 2