Answers for "functions of random module in python"

16

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)
Posted by: Guest on May-30-2020
7

python randint

from random import randint

print(randint(3, 9))
Posted by: Guest on January-16-2020
4

random in python

print(random.randint(1, 100))
print(random.random())
Posted by: Guest on June-05-2020
1

which function to use in random module for a list in python

random.choice
Posted by: Guest on May-11-2020

Code answers related to "functions of random module in python"

Python Answers by Framework

Browse Popular Code Answers by Language