Answers for "how to use random choice in python"

23

how to randomly choose from a list python

random.choice(name of list)
Posted by: Guest on December-04-2019
5

choice random python

import random

#sampling with replacement
list = [20, 30, 40, 50 ,60, 70, 80]
sampling = random.choices(list, k=4)
print("Randomly selected multiple choices using random.choices() ", sampling)
Posted by: Guest on December-24-2020
0

from random import choice

from random import choice
choices = ["tin","marin","do","pingue"]
choice(choices)
Posted by: Guest on October-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language