1
0

random.py 102 B

123456
  1. import random
  2. for _ in range(100):
  3. i = random.randint(1, 10)
  4. assert i <= 10
  5. assert i >= 1