A tuple is a collection data type in python. We declare the tuple in the round brackets.
a = (0,1,2,3,4,5)
Named tuples are basically easy-to-create, lightweight object types. Named tuple instances can be referenced using object-like variable dereferencing or the standard tuple syntax