CBSE Class 11 Informatics Practices
Question 28 of 80
Lists in Python — Question 6
Back to all questionsIt adds an item to the end of the list.
Reason — The append() function adds a single item to the end of the list. It does not create a new list, rather it modifies the original list.