I\'m working on a script where I have a list of tuples like (\'1\',\'2\',\'3\',\'4\'). e.g.:
(\'1\',\'2\',\'3\',\'4\')
list = [(\'1\',\'2\',\'3\',\'4\'), (\'2\',\
In Python, you can't. Tuples are immutable.
On the containing list, you could replace tuple ('1', '2', '3', '4') with a different ('1', '2', '3', '4', '1234') tuple though.
('1', '2', '3', '4')
('1', '2', '3', '4', '1234')