The following operations were performed: numbers = [1, 2, 3] numbers.append(numbers) Select the form of the numbers list.

Questions & AnswersCategory: PythonThe following operations were performed: numbers = [1, 2, 3] numbers.append(numbers) Select the form of the numbers list.
Lokesh Kumar Staff asked 2 years ago

The following operations were performed:

numbers = [1, 2, 3]

numbers.append(numbers)

Select the form of the numbers list.
a. The same list cannot be appended to itself.
b. [1, 2, 3, […]]
c. [1, 2, 3]
d. []