What\'s the difference between () vs [] vs {} in Python? They\'re collections? How can I tell when to use which?
() - tuple [] - list {} - dictionary
All Python tutorials should cover this. Here is a good place to start.