Answers for "how to use random.choice in python"

9

how to get a random element from an array in python

import random
names=['Mark', 'Sam', 'Henry']

#Set any array
random_array_item=random.choice(names)

#Declare a variable as a random choice
print(random_array_item)

#Print the random choice
#Or, if you want to arrange them in any order:
for j in range(names):
  print(random.choice(names))
Posted by: Guest on June-16-2020
23

how to randomly choose from a list python

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

choose random index from list python

import random  # Don't forget to install it first with pip install random

ahahfunny = ['ahah ', 'copy-', 'paste ', 'stack overflow',' go ', 'brrr']
#  the biggest index in this list above is 5 (0 being 1 in programming)

print(ahahfunny[random.randint(0, 5)]  # I like this way,
      
print(random.choice(ahahfunny)) # But this way is WAY thiccer...
Posted by: Guest on July-08-2020
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
8

random.choice

import random

numberList = [111,222,333,444,555]
print("random item from list is: ", random.choice(numberList))
Posted by: Guest on May-11-2020
0

random.choice

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

Python Answers by Framework

Browse Popular Code Answers by Language