SyntaxStudy
Sign Up
Home Python Exercises Python Lists

Python Lists

Beginner

Fill in the Python list operations.

To create an empty list: my_list =

To add an item to the end: my_list.("item")

To remove an item by value: my_list.("item")

To get the number of items: (my_list)

To sort a list in place: my_list.()