Answers for "randomly select from a list python"

9

print random string from list python

import random

list = ["Item 1", "Item 2", "Item 3"]			# List
item = random.choice(list)						# Chooses from list
print(item)					# Prints choice

# From stackoverflow
# Tried and tested method
Posted by: Guest on May-05-2020
23

how to randomly choose from a list python

random.choice(name of list)
Posted by: Guest on December-04-2019
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
0

how to make a python file that prints out a random element from a list

from random import choice

example = [1,23,45,89,20,4,82]
solve = choice(example)
print(solve)
Posted by: Guest on November-16-2020

Code answers related to "randomly select from a list python"

Python Answers by Framework

Browse Popular Code Answers by Language