Source Code:
(back to article)
# Creating a tuple t = (1, 2, 3, 4, 5) # Updating a tuple t[2] = 6 print(t)
Result:
Report an issue