Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Lists and the Append() function in Python

What is the meaning of 'None' when appending one list object to another list object?

>>> list_one = ["abc", "def", "ghi"]
>>> list_two = ["jkl", "mno", "pqr"]
>>> print(list_one.append(list_two))
None

>>> print(list_one)
['abc', 'def', 'ghi', ['jkl', 'mno', 'pqr']]

1 Answer

Sean Pomerantz
Sean Pomerantz
1,722 Points

The function .append() simply adds an item to the end of a list and does not return a value. A function that does not return a value returns "None".

Nikolai Montesclaros
Nikolai Montesclaros
11,928 Points

Sean is correct and to just to expand, its really the print statement that is returning None and has nothing to do with appending to your list.