Python Tuple Program - Modification


Program
a = (1, 4.022, "Hello Fresherbell", True) print(type(a)) print (a) a[2] = False
Input
Output