Answers for "python get random integer"

12

random int python

import random

random.randint(1, 1000) #inclucive
Posted by: Guest on March-06-2021
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
1

random int python

from random import randint
random_integer_between_40_and_50 = randint(40, 50)# 40 is start and 50 is end
print(random_integer_between_40_and_50)
Posted by: Guest on January-16-2021
0

how to make a random int in python

random.randint(0, 100)
##This would make the random number be from 0 to 100
Posted by: Guest on January-15-2021
2

random in python

#Using Random choice python
#Running Race game
import time
import random
gamelist = ['You lose the race', 'You win the race']
Player = input('')
print(' Hi ' + Player + ' , welcome to the running race game')
time.sleep(2)
print('3')
time.sleep(1)
print('2')
time.sleep(1)
print('1')
time.sleep(2)
print(random.choice(gamelist))
Posted by: Guest on October-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language