What is append in python

藏色散人
Release: 2019-08-01 15:52:06
Original
49093 people have browsed it

What is append in python

What is append in python?

The append() method in python is used to add new objects at the end of the list.

append() method syntax:

list.append(obj)
Copy after login

Parameters

obj -- The object added to the end of the list.

Return value

This method has no return value, but it will modify the original list.

Example

The following example shows how to use the append() function:

#!/usr/bin/python
aList = [123, 'xyz', 'zara', 'abc'];
aList.append( 2009 );
print "Updated List : ", aList;
Copy after login

The output results of the above example are as follows:

Updated List :  [123, 'xyz', 'zara', 'abc', 2009]
Copy after login

Related recommendations: "Python Tutorial

The above is the detailed content of What is append in python. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template