Question
Asked By – Dawood
I have a tuple called values
which contains the following:
('275', '54000', '0.0', '5000.0', '0.0')
I want to change the first value (i.e., 275
) in this tuple but I understand that tuples are immutable so values[0] = 200
will not work. How can I achieve this?
Now we will see solution for issue: How to change values in a tuple?
Answer
It’s possible via:
t = ('275', '54000', '0.0', '5000.0', '0.0')
lst = list(t)
lst[0] = '300'
t = tuple(lst)
But if you’re going to need to change things, you probably are better off keeping it as a list
This question is answered By – Jon Clements
This answer is collected from stackoverflow and reviewed by FixPython community admins, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0