in Python3.2 I'm trying to do a list:
>> ls = 1, 2, 3
>> ls
(1, 2, 3)
>> ls.append(4)
And with this last command, I get the following error:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'tuple' object has no attribute 'append'
Why is this? How can I solve it? Thanks for your time