Data Types In Python

Python Data types Data types is the value which we want to store in variables .In which variable are store in different data types Python provide the type() function to Identify the type of variable .In Python there are some standard data types which are used to define storage method .In Python there is no need to define the type of variable in the statement of variable declaration .when the value is assigned to the variable , the interpreter set the data type of variable. There are five types of data types provide by Python 1. Number 2. String 3. List 4. Tuple 5. Dictionary Number : Number are used to store numeric value .Number object is generated by Python when a number assigned to a variable. In Python there are four types of numeric data. integer (int) : signed integer such as 5,10,15,etc. long : used for high range value like 1234567890 Float : used for point number such as 1.21,3...