Best post on tuple operations and immutable tuple- 2

tuple operations

Tuple datatype and tuple operations 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 to … Read more