mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
6 lines
102 B
Python
6 lines
102 B
Python
import random
|
|
|
|
for _ in range(100):
|
|
i = random.randint(1, 10)
|
|
assert i <= 10
|
|
assert i >= 1 |