Consider this entry from IDLE. >>> random.randrange(10)
5
Which statement is true?

There is no randrange method. You would need to write your own.

When you first open IDLE, you can use the randrange() method.

You need to import randrange from the random module.

You need to import randrange from the math module.

Solved
Show answers

Ask an AI advisor a question