How to use lists in Python?

Question

How to use lists in Python?

Re: How to use lists in Python?

Each one of values in list is numbered, starting from zero so uou can call them.
For example, to print the name of your 3rd number of the list you will need to:
print data[2]
To add something to the list use:
data.append('example')