Python

Data types in Python


Data type specifies the type of data present inside a variable.
• Every value has a data type
• In python it is not required to specify the data type explicitly.
• Based on the value, the type will be assigned automatically.
• Python is dynamically typed language.


Python contains the following data types

• None
• Numeric
• List
• Tuple
• Set
• String
• Range
• Dictionary/ mapping
NONE:
• If a variable is not assigned with any value is called None.
Numeric
• Numeric type of data is classified into four types

  1. Int
  2. Float
  3. Complex
  4. Bool
    Integer
    Integer includes the values that are integers.
    Integer type variables stores the values that are in integer format.
    • Example:
    num= 4
    print(num)
    output :4
    Float:
    • Float includes decimal numbers.
    Example
    • num= 5.5
    print(num)
    output:
    5.5
    Complex:

    • It includes real and imaginary values.
    • Example:>>num=7+8j
    num= ‘7+8j’
    print(num)
    output:
    7+8j
    Note: In all the above data types we are not specifying the data type before the variable. This means that in python thee is no need to type the data type explicitly. It considers the type of the data based in the given input value

Lakshmi Durga

Share
Published by
Lakshmi Durga

Recent Posts

What are Template Tags in WordPress? How to Use Template Tags

In wordpress if you are developing new or custom wordpress theme or wordpress plugin then…

2 months ago

Google Search Indexing Issues Started on 31st January to February 2024

If you are experiencing indexing issues of your website then you are not alone and…

3 months ago

Create QR Code for Pages & Post using Plugin in WordPress

On your wordpress website if you want to generate qr code for pages and posts…

3 months ago

Add Google Search Console HTML File Upload on WordPress

If you are trying to verify your WordPress website with google search console with html…

3 months ago

How Do I Add Google Search Console Verification HTML Tag in WordPress?

If you are on wordpress website and wondering how to keep search console html verification…

4 months ago

Why WordPress Too Many Redirects After URL Change

If you are getting too many redirects error on your WordPress website after changing url…

4 months ago