programming-examples/python/Math/Generate random integers in a specific numerical range.py
2019-11-15 12:59:38 +01:00

4 lines
87 B
Python

import random
for x in range(6):
print(random.randrange(x, 100), end=' ')