Answers for "random a list in python"

5

random from list python

import random

foo = ['a', 'b', 'c', 'd', 'e']
print(random.choice(foo))
Posted by: Guest on March-29-2021
1

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

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

python random generator from list

import random
n = random.random()
print(n)
Posted by: Guest on June-01-2020

Code answers related to "random a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language