Answers for "create a random number between 1 and 10 in python"

10

python function to print random number

import random
n = random.randint(0,22)
print(n)
Posted by: Guest on June-03-2020
2

how to tell python to create a random numer

#to choose a random number simply do this
import random
print(random.randint(1, 100))
Posted by: Guest on July-22-2020

Code answers related to "create a random number between 1 and 10 in python"

Python Answers by Framework

Browse Popular Code Answers by Language