How to use append in python
Most people do not understand the knowledge points of this article "how to use append in python", so the editor summarizes the following content, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "how to use append in python" article.
Specific steps for use:
1. First open the python editor and create a new python project.
2. Define a list in the python project.
AList = [123,' xyz', 'zara',' abc']
3. Finally, add a new object at the end of the list through the append method.
AList.append (2021)
Complete example code:
#! / usr/bin/python
AList = [123,' xyz', 'zara',' abc']
AList.append (2009)
Print "Updated List:", aList
Output result:
Updated List: [123,' xyz', 'zara',' abc', 2021]
The above is about the content of this article on "how to use append in python". I believe we all have some understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please pay attention to the industry information channel.