random python

20

# generate random integer values
from random import randint

value = randint(0, 10)
print(value)

Comments

Submit
0 Comments