Answers for "practical use of random function in python"

19

how to use random in python

import random
print(random.randint(3, 7)) #Prints a random number between 3 and 7
array = [cars, bananas, jet]
print(random.choice(array)) #Prints one of the values in the array at random
Posted by: Guest on March-07-2020
1

how to make a function to choose random things in python

import random
def deal_card():
    cards = [11,2,3,4,5,6,7,8,10,10,10,10]
    card = random.choice(cards)
    return card
Posted by: Guest on August-26-2021

Code answers related to "practical use of random function in python"

Python Answers by Framework

Browse Popular Code Answers by Language