6 lines
128 B
Python
6 lines
128 B
Python
|
# Program to generate a random number between 0 and 9
|
||
|
|
||
|
# import the random module
|
||
|
import random
|
||
|
|
||
|
print(random.randint(0,9))
|