Which Of The Following Is Equivalent To Randomrandrange3 #872
Which of the following is equivalent to random.randrange(3)?
This multiple choice question (MCQ) is related to the book/course
gs gs109 Python.
It can also be found in
gs gs109 Python Modules - Python Random Module - Quiz No.2.
Which of the following is equivalent to random.randrange(3)?
range(3)
random.choice(range(0, 3))
random.shuffle(range(3))
random.select(range(3))