Python Tuple Program - Slicing


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