Best post on tuple datatype in python – 1
Tuple Datatype in Python Python supports many simple and compound datatypes. Few data types like list, dictionary are mutable and others like string datatype, tuple are immutable. Mutable datatypes means changes can be done and are reflected in same variable. Immutable datatypes means changes can be done but not in same variable. Tuple is similar … Read more