random number python code example

Example 1: random number python

# generate random integer values
from random import randint

value = randint(0, 10)
print(value)

Example 2: python random number

from random import randint

print(randint(1,5))

##Possible Outputs##
#1
#2
#3
#4
#5

Example 3: python list of random values

# To create a list of random integer values:
import random
randomlist = random.sample(range(10, 30), 5)
# Output:
# [16, 19, 13, 18, 15]

# To create a list of random float numbers:
import numpy
random_float_array = numpy.random.uniform(75.5, 125.5, 2)
# Output:
# [107.50697835, 123.84889979]

Example 4: how to use random in python

import random
print(random.randint(3, 7)) #Prints a random number between 3 and 7
array = [cars, bananas, jet]
print(random.choice(array)) #Prints one of the values in the array at random

Example 5: python random

# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))

Example 6: random number python

import random
num = random.randint(1, 10) # put any number
print(num)

Tags:

Misc Example