Itra
0
Q:

random in python

# generate random integer values
from random import randint

value = randint(0, 10)
print(value)
35
from random import randint

print(randint(1,5))

##Possible Outputs##
#1
#2
#3
#4
#5
8
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
3
# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
34
from random import randint

print(randint(1,3))

#Possible Outputs#
#1
#2
#3
11
# 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())
19
#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)
6
from random import randint

radnom_number = randint(1, 10) # generate random number from 1 to 10. including 10

print(radnom_number)

# Possible outputs
# 1
# 2
# 3
# 4
# 5
# 6
# 7
# 8
# 9
# 10
1
import random
print(random.randint(0,1))
1
print(random.randint(1, 100))
print(random.random())
3

New to Communities?

Join the community