Answers for "python randrange"

87

python random

# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
Posted by: Guest on December-23-2019
16

python random

#import random 
import random

names = ['Harry', 'John', 'Smith', 'Larry']

#print random name from names
print(random.choice(names))

#print random integer in a range of numbers
print(random.randint(1, 100)
Posted by: Guest on May-30-2020
27

python random

# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
# random generates a random real number in the interval [0, 1)
print(random.random())
Posted by: Guest on March-03-2020
3

python random number

from random import randint

radnom_number = randint(1, 10) # generate random number from 1 to 10. including 10

print(radnom_number)

# Possible outputs
# 1
# 2
# 3
# 4
# 5
# 6
# 7
# 8
# 9
# 10
Posted by: Guest on November-27-2020
3

random range python

from random import randrange
print(randrange(10))
Posted by: Guest on July-16-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

Python Answers by Framework

Browse Popular Code Answers by Language