Home / Python Tips Generated By ChatGPT / List Operations: Append, Remove, Sort in Python Modify lists with various methods. Source Code fruits.append("orange") # Add an item fruits.remove("banana") # Remove an item fruits.sort() # Sort the list