Answers for "what is th code that can pick random in the list in phython"

2

how to pick a random number in a list python

import random
choose = ["Egg","Rat","Rabbit","Frog","Human"]
Choosen = random.choice(choose)
print(Choosen)
Posted by: Guest on July-27-2021
1

pick a random number from a list in python

import random

numberList = [1,2,3,4,5]
print(random.choice(numberList))    # Prints a random number from the list
Posted by: Guest on November-27-2020

Code answers related to "what is th code that can pick random in the list in phython"

Python Answers by Framework

Browse Popular Code Answers by Language