Answers for "how do i generate random elements of a list in python"

33

python choose random element from list

import random

#1.A single element
random.choice(list)

#2.Multiple elements with replacement
random.choices(list, k = 4)

#3.Multiple elements without replacement
random.sample(list, 4)
Posted by: Guest on May-25-2020
2

python how to randomly choose an item from a list

import random

nums = ['a', 'b', 'c', 'd', 'e']
print(random.choice(nums))
Posted by: Guest on January-16-2021

Code answers related to "how do i generate random elements of a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language