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

4 lines
91 B
Python
Raw Normal View History

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