random api 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: generate random number python
import random
random.randint(lower, upper)
Example 3: python random
# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
# random generates a random real number in the interval [0, 1)
print(random.random())
Example 4: random in python
print(random.randint(1, 100))
print(random.random())
Example 5: random.uniform python
#In contrast to randInt .random.uniform generates a floating number between two variables
# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))