Answers for "3- Writing a Python program that generates a random number"

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 "3- Writing a Python program that generates a random number"

Python Answers by Framework

Browse Popular Code Answers by Language