[08:42, 6/3/2026] Sana Fahad: What does .append() actually do?
The .append() method takes a single item and adds it directly to the very end of an existing list. It modifies the original list in place, meaning it doesn't create a new copy; it just grows the list you already have.
The Syntax:
list_name.append(item)