Table of Contents
In this tutorial, we will discuss the concept of datatype in python programming language
Data types indicates the type of value and how the value can be used in programs. Data type is used to allocate memory location in memory. For future use of stored data, variables are given a unique name to identify different memory locations. There is no need to declare variables before using them in python, unlike other languages. However, access to the data (content) is via variable name (variable identifiers) in python.
Eg
your_age=34
34 is Assigned to the variable Your_age
Python has five type of data type or variable
Eg – 17.5, 234.67, -456.4, -1000.23
List is a very important and most used data type in python. List is a collection of ordered sequence items like the array data type.
Syntax
Syntax of list data type in Python
list_name=[Item 1,Item 2,Item 3,Item 4] ;
Example
Names=[“mathan”,”suthan”,”babu”,”nimal”];
Tuble is a collection of ordered sequence items like List data type in Python.
Syntax
Syntax of Tuble data type in Python
Tuble_name=(Item 1,Item 2,Item 3,Item 4);
Example
Names=(“mathan”,”suthan”,”babu”,”nimal”);
We can use single quotes or double code to represent a String in Python. Multi line string can be denoted using triple quotes ”’ or “””
Example 1
When the above code is executed, it produceS the following results
Program 2
when the above code is executed, it produces the following results
hello welcom
hello welcom
hello welcom
to python
tutorial
hello welcom
to python
tutorial
Syntax
Syntax of set data type in Python
set_name={Item 1,Item 2,Item 3,Item 4} ;
Example
Names={“mathan”,”suthan”,”babu”,”nimal”};
Dictionary in Python
Dictionary is a data type which is an unordered collection of items. A dictionary has a pair of items such as a key and a value.
Example
ProgrammingLanguages={}
ProgrammingLanguages[“jdk”]=”java development kit”
ProgrammingLanguages[“html”]=”Hyper text markup language”
ProgrammingLanguages[“css”]=”cascading style sheet”
ProgrammingLanguages[“xml”]=”extensible markup language”
Subtract two numbers using method overriding Program 1
PHP Star triangle Pattern program Here's a simple Java program that demonstrates how to print…
Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…
Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…
Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…
How to write a program to convert Fahrenheit into Celsius In this article, we will…
This website uses cookies.