What’s the difference between lists enclosed by square brackets and parentheses in Python?
Square brackets are lists while parentheses are tuples. A list is mutable, meaning you can change its contents: >>> x = [1,2] >>> x.append(3) >>> x [1, 2, 3] while tuples are not: >>> x = (1,2) >>> x (1, 2) >>> x.append(3) Traceback (most recent call last): File “<stdin>”, line 1, in <module> AttributeError: … Read more