Chapter 6: Problem 6
What does the following statement do? print(random.randrange(10, 20))
Short Answer
Expert verified
Answer: The statement "print(random.randrange(10, 20))" generates a random integer from the specified range (10 inclusive to 20 exclusive) using the "randrange()" function from the "random" module in Python and then prints it. To achieve this, the "random" module is imported, the "randrange()" function is called with the arguments 10 and 20, representing the start and end of the range, and the "print()" function displays the generated random integer.