Python Datatype Example - List -2


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