Which comparison of lists and tuples in Python is correct?
Use lists instead of tuples when you have a collection of related but dissimilar objects.
Use tuples instead of lists when you have a common collection of similar objects.
Use tuples instead of lists for functions that need to return multiple values.
Use lists instead of tuples when the position of elements is important.