Added more info about the append method (#26478)

* Added more info about the append method

Added the detail that the method adds the argument to the end specifically.

* Removed redundant point
This commit is contained in:
JawnsenTrain
2019-01-05 15:25:27 -06:00
committed by Manish Giri
parent b8d3a77317
commit d2c9a45f21

View File

@ -4,7 +4,7 @@ title: List Append Method
## List Append Method
There are many methods for lists, you can explore all of them by typing `help(list)` in your python console.
One of them is the append function which, as the name says appends the argument given list.
One of them is the `append()` function which, as the name says, appends/adds the argument to the end of the given list.
#### Example Usage