how to build the random module in python code example
Example 1: 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)
Example 2: which function to use in random module for a list in python
random.choice