Computer Science, asked by Arun3218, 11 months ago

What do you mean by list.append(obj)

Answers

Answered by Anonymous
3

Answer:

It passes a object into the existing list.They can be altered even after their creation.

Explanation:

follow MAH ❣️❣️

Answered by laraibmukhtar55
0

list.append(obj):

• It is the python list method.

• It appends a passed object into the existing list.

• The append system is applied to add an object to a list. This object may be of any data type, a string, an integer, a Boolean, or even another list.  

• The append() method in python adds a particular item to the existing list. It doesn't return a new list of items however will modify the original list by adding the item to the end of the list.  

Hope it helped..

Similar questions