Answers for "randomly pick a value in the list"

0

randomly pick a value in the list

import random

l = [0, 1, 2, 3, 4]

print(random.sample(l, 3))
# [1, 3, 2]

print(type(random.sample(l, 3)))
# <class 'list'>
Posted by: Guest on August-26-2021

Code answers related to "randomly pick a value in the list"

Python Answers by Framework

Browse Popular Code Answers by Language