From c3bdbafa2d7ce096018a49a4e8d543b86903257f Mon Sep 17 00:00:00 2001 From: vladpruteanu-sys Date: Sun, 1 Feb 2026 17:51:24 +0000 Subject: [PATCH] Add append() method documentation --- .../python/concepts/lists/append/append.md | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 content/python/concepts/lists/append/append.md diff --git a/content/python/concepts/lists/append/append.md b/content/python/concepts/lists/append/append.md new file mode 100644 index 00000000000..e2591c6f9be --- /dev/null +++ b/content/python/concepts/lists/append/append.md @@ -0,0 +1,23 @@ + +--- +Title: 'append()' +Description: 'Adds an item to the end of a list.' +Subjects: + - 'Computer Science' +Tags: + - 'Lists' + - 'Methods' +CatalogContent: + - 'learn-python' + - 'paths/computer-science' +--- + +## Definition + +The `append()` method adds a single item to the end of a list. It modifies the list in place and returns `None`. + +## Syntax + +```python +list.append(item) +