Example & Tutorial understanding programming in easy ways.

Write a program to find the random number between 0 to 10 .

program:

import random

print(random.randint(0,10))

output:

2

4

5

6

1

10


Read More →