Chapter 5: Problem 26
What does the following statement do? print(random.randrange(10, 20))
Short Answer
Expert verified
Answer: The statement prints a random integer between 10 (inclusive) and 20 (exclusive) using the 'random.randrange()' function from the random module.