Answers for "python how to use random"

84

random number python

# generate random integer values
from random import randint

value = randint(0, 10)
print(value)
Posted by: Guest on February-15-2020
11

python random number

from random import randint

print(randint(1,3))

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

import random in python

# Assessment Task 7.2.1
def DisplayOddNum(N):
  pass

for x in DisplayOddNum(20)
  print(x)
Posted by: Guest on November-14-2020

Code answers related to "python how to use random"

Python Answers by Framework

Browse Popular Code Answers by Language