Chapter 7: Problem 3
What will the following code display? numbers = [10] * 5 print(numbers)
Short Answer
Expert verified
Answer: The output of the given code will be the list [10, 10, 10, 10, 10].