all the methods of the random module of 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: random in python
print(random.randint(1, 100))
print(random.random())
Example 3: which function to use in random module for a list in python
random.choice