Answers for "how to choose a random element from an array 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
12

how to print a random part of a list in python

import random

foo = ['a', 'b', 'c', 'd', 'e']
print(random.choice(foo))
Posted by: Guest on April-08-2020
23

how to randomly choose from a list python

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

select random value from list python

import random

# with replacement = same item CAN be chosen more than once.
# without replacement = same item CANNOT be chosen more then once.

# Randomly select 2 elements from list without replacement and return a list
random.sample(list_name, 2)

# Randomly select 3 elements from list with replacement and return a list
random.choices(set_name, k=3)

# Returns 1 random element from list
random.choice(list_name)
Posted by: Guest on April-21-2020

Code answers related to "how to choose a random element from an array in python"

Python Answers by Framework

Browse Popular Code Answers by Language