programming-examples/python/Math/Generate random integers in a specific numerical range.py

4 lines
87 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
import random
for x in range(6):
print(random.randrange(x, 100), end=' ')