fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@ -0,0 +1,26 @@
---
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.
#### Example Usage
```py
words = ["I", "love", "Python"]
words.append("very much")
print(words)
```
#### Output
```
["I", "love", "Python", "very much"]
```
As you might have noticed the element `"very much"` is appended to the list.
#### More Information:
The official documentation for `append()` can be found <a href='https://docs.python.org/3.6/tutorial/datastructures.html' target='_blank' rel='nofollow'>here</a>