changer de tuple en python

a = (2,4,5,3,2)

a[0] = 45
#it will replace 2 with 45
Coding boy Hasya