Best post on tuple datatype in python – 1

tuple datatype

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

Data Types in Java

Data Type tells us the size and type of data which can be stored in variable. Two types are Primitive Data types : Data types such as int, boolean, char, short, long, byte, float, double are known as primitive data types. Non Primitive Data types : Data types such as Array, class, interface are known … Read more