Run Program ❯
Python Home
❯
Run Code
Change Orientation
# Create a list of fruits fruits = ["apple", "banana", "mango"] # Append new fruits to the list fruits.append("orange") fruits.append("grape") # Display the updated list print("Fruit List:", fruits)