What can you do with a list?

The full list of list methods is in Python Library Reference. Here's an idea of how you might use and combine these methods to carry out common operations.

Create a list:

Access an item from a list:

Access a sublist of a list (called a slice in Python):

Adding items to a list:

Removing items:

Getting information about a list and its contents:

Miscellaneous commands you should try out (because they will probably be useful on assignments!):