Answers for "random choice number python"

2

random numbers in python

import random

randomNumber = random.randint(1, 100)
print(randomNumber)
Posted by: Guest on December-03-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

Python Answers by Framework

Browse Popular Code Answers by Language