tuple does not support item assignment python code example
Example: TypeError: 'tuple' object does not support item assignment
# if you are trying to replace the existing value in a tuple with a new value then this error occurs.
#Ex:
languages = ('C', 'Python', 'Scrapy')
languages[2] = 'Java'