99.6k views
15 votes
What is an example of a situation in which you might use the append method? In what ways is the append method limited?

What is the difference between a method and a function? In what ways are they similar? Why do you think Python makes a distinction between methods and functions?

User Ngstschr
by
4.0k points

1 Answer

7 votes

Answer:

An example of a situation in which I might use the append method is explained below in details.

Step-by-step explanation:

Append Method

The append() arrangement in python combines a separate item to the present list. It doesn't recover a new record of items but will transform the primary list by combining the item to the conclusion of the record. After completing the process append on the list the size of the list advances by one.

User Felix Lange
by
4.1k points