Answers for "how to build the random module in python"

16

python random

#import random 
import random

names = ['Harry', 'John', 'Smith', 'Larry']

#print random name from names
print(random.choice(names))

#print random integer in a range of numbers
print(random.randint(1, 100)
Posted by: Guest on May-30-2020
1

which function to use in random module for a list in python

random.choice
Posted by: Guest on May-11-2020

Code answers related to "how to build the random module in python"

Python Answers by Framework

Browse Popular Code Answers by Language