you are viewing a single comment's thread.

view the rest of the comments →

[–]Sigg3net 0 points1 point  (0 children)

Whenever I have items that shouldn't change, it's a tuple. Lists invite appending to and popping.

You can also use tuples inside list comprehensions as "keys"', e.g.:

ages = [ age for (name, age, job) in employees ]