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

4 lines
91 B
Python

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