In this example we can see how to generate a random number in Python.
import random
x = random.randint(0,200)
print x
In the first row we import Python random module. It’s contains different useful functions to generate random numbers. In the second row we use function randint from the imported module to generate integer between 0 and 200 and assign it to variable x. In the last row we print the integer on the screen.
Was this article helpful?
If you have any suggestions or questions, please leave a comment below.
Leave A Comment