QUESTION IMAGE
Question
you want to use the randrange() method. which line will allow you to enter the following code in idle
>> randrange(10,20,2)
10
>> randrange(1,9)
2
from randrange import math
from math import randrange
from randrange import random
from random import randrange
Brief Explanations
In Python, the randrange function is part of the random module. To use it, you need to import randrange from the random module.
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
D. from random import randrange