how to generate random numbers in python code example
Example 1: random number python
from random import randint
value = randint(0, 10)
print(value)
Example 2: python list of random values
import random
randomlist = random.sample(range(10, 30), 5)
import numpy
random_float_array = numpy.random.uniform(75.5, 125.5, 2)
Example 3: python make a random number
from random import seed
from random import randint
seed(1)
for _ in range(10):
value = randint(0, 10)
print(value)
Example 4: python function to print random number
import random
n = random.randint(0,22)
print(n)
Example 5: how to tell python to create a random numer
import random
print(random.randint(1, 100))
Example 6: python random
import random
names = ['Harry', 'John', 'Smith', 'Larry']
print(random.choice(names))
print(random.randint(1, 100)