python get random number in range code example
Example 1: random number python
from random import randint
value = randint(0, 10)
print(value)
Example 2: python how to generate random number in a range
import random
x = random.random()
x = random.randint()
x = random.randint(1, 100)
Example 3: How to get random int between two numbers python
import random
print(random.randint(10,100))
this will output somthing between 10 and 100
Example 4: 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 5: python random
import random
names = ['Harry', 'John', 'Smith', 'Larry']
print(random.choice(names))
print(random.randint(1, 100)
Example 6: random number pythn
import random
n = random.randint(0,22)
print(n)