Answers for "creating random numbers in python"

10

how to generate a random number python

import random
n = random.randint(0,22)
print(n)
Posted by: Guest on June-03-2020
8

python make a random number

# generate random integer values
from random import seed
from random import randint
# seed random number generator
seed(1)
# generate some integers
for _ in range(10):
	value = randint(0, 10)
	print(value)
Posted by: Guest on February-26-2020
2

random numbers python

import numpy
x = numpy.random.randint(100)
# 63

x = numpy.random.randint(100, size=5)
# [60 50 55 30 88]

x = numpy.random.rand()
# 0.37588774033323125

x = numpy.random.rand(5)
# [0.41746837 0.67201216 0.55337301 0.51383033 0.21457139]

x = numpy.random.rand(2,3)
# [[0.19597024 0.65582147 0.3804617 ]
#  [0.5601902  0.5976546  0.58099592]]

x = numpy.random.choice([1,5,2,3,4])
# 3

x = numpy.random.choice([1,5,2,3,4], size=(2,3))
# [[2 4 1]
#  [3 3 3]]

import random
x = random.getrandbits(1)
# True
Posted by: Guest on October-03-2020
0

how to get a random number in python

def randnum(min, max):
    num = random.randint(a, b)
    return num
  randomnumber = randnum(0,10)
  print(randomnumber)
 #output: 5
Posted by: Guest on March-09-2021
-1

how to make a random number generator in python

# We'll be using the random module for this code
import random
# Let's first get the range of numbers from which they want a random number
start = int(input('What is the lowest number you would expect'))
end = int(input('What is the largest number you would expect'))
print('This is the number',random.randint(start,end))
Posted by: Guest on July-04-2021

Code answers related to "creating random numbers in python"

Python Answers by Framework

Browse Popular Code Answers by Language