Answers for "5 random numbers from 1 to 20 in python"

11

python random number

from random import randint

print(randint(1,3))

#Possible Outputs#
#1
#2
#3
Posted by: Guest on March-07-2020
2

get n random numbers from x to y python

import random
random.sample(range(31), 10)
Posted by: Guest on April-04-2020

Code answers related to "5 random numbers from 1 to 20 in python"

Python Answers by Framework

Browse Popular Code Answers by Language