Cambiar tuple en Python
a = (2,4,5,3,2)
a[0] = 45
#it will replace 2 with 45
Coding boy Hasya
a = (2,4,5,3,2)
a[0] = 45
#it will replace 2 with 45