Python Generate a Random Number

avatar
Apr 27, 2022 · Snippet · 1 min, 114 words

In this snippet, we will generate a random number.

Solution

The code:

import random

print(random.randint(0,50))

Output:

8

Run the program in our IDE.

Comments

No comments yet…