Answers for "creating two random numbers python"

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
8

random numbers python

import random
a = (random.randint(bottom value, top value)
Posted by: Guest on July-09-2020

Code answers related to "creating two random numbers python"

Python Answers by Framework

Browse Popular Code Answers by Language