diff --git a/RandomNumber.py b/RandomNumber.py new file mode 100644 index 0000000..d66e208 --- /dev/null +++ b/RandomNumber.py @@ -0,0 +1,6 @@ +# Program to generate a random number between 0 and 9 in Python + +# importing the random module +import random + +print(random.randint(0,9))