TypeError: 'tuple' object does not support item assignment

Hi everyone, I’m trying to update the values of a tuple in Python, but I’m running into errors. I understand that tuples are immutable and their values cannot be modified directly. So, I tried converting the tuple to a list, updating the values, and then converting it back to a tuple. However, I’m still getting unexpected output and I’m not sure where I’m going wrong.

Here’s the code I’ve written:

Unfortunately, when I run this code, I get a TypeError: ‘tuple’ object does not support item assignment. I understand that tuples are immutable, but I’m not sure how to modify the values in this case. Can anyone please help me figure out what I’m doing wrong? I would really appreciate it if someone could suggest a solution or provide some guidance on how to update the values of a tuple.

Thank you in advance for your help!