Python Data types are the classification or categorization of data items. It represents the kind of value that tells what operations can be performed on a particular data. Since everything is an object in Python programming, Python data types are classes and variables are instances (objects) of these classes. The following are the standard or built-in data types in Python:
DataTypesThis code assigns variable 'x' different values of few Python data types -int, float, list, tuple and string. Each assignment replaces the previous value, making 'x' take on the data type and value of the most recent assignment.
Python# int, float, string, list and setx=50x=60.5x="Hello World"x=["geeks","for","geeks"]x=("geeks","for","geeks")
1. Numeric Data Types in Python
The numeric data type in Python represents the data that has a numeric value. A numeric value can be an integer, a floating number, or even a complex number. These values are defined as Python int, Python floatandPython complexclasses inPython.
- Integers - This value is represented by int class. It contains positive or negative whole numbers (without fractions or decimals). In Python, there is no limit to how long an integer value can be.
- Float - This value is represented by the float class. It is a real number with a floating-point representation. It is specified by a decimal point. Optionally, the character e or E followed by a positive or negative integer may be appended to specify scientific notation.
- Complex Numbers- A complex number is represented by a complex class. It is specified as (real part) + (imaginary part)j .For example - 2+3j
Pythona=5print(type(a))b=5.0print(type(b))c=2+4jprint(type(c))
Output<class 'int'><class 'float'><class 'complex'>
2. Sequence Data Types in Python
The sequence Data Type in Python is the ordered collection of similar or different Python data types. Sequences allow storing of multiple values in an organized and efficient fashion. There are several sequence data types of Python:
String Data Type
Python Stringsare arrays of bytes representing Unicode characters. In Python, there is no character data type Python, a character is a string of length one. It is represented by str class.
Strings in Python can be created using single quotes, double quotes or even triple quotes. We can access individual characters of a String using index.
Pythons='Welcome to the Geeks World'print(s)# check data typeprint(type(s))# access string with indexprint(s[1])print(s[2])print(s[-1])
OutputWelcome to the Geeks World<class 'str'>eld
List Data Type
Lists are just like arrays, declared in other languages which is an ordered collection of data. It is very flexible as the items in a list do not need to be of the same type.
Creating a List in Python
Lists in Python can be created by just placing the sequence inside the square brackets[].
Python# Empty lista=[]# list with int valuesa=[1,2,3]print(a)# list with mixed int and stringb=["Geeks","For","Geeks",4,5]print(b)
Output[1, 2, 3]['Geeks', 'For', 'Geeks', 4, 5]
Access List Items
In order to access the list items refer to the index number. In Python, negative sequence indexes represent positions from the end of the array. Instead of having to compute the offset as in List[len(List)-3], it is enough to just write List[-3]. Negative indexing means beginning from the end, -1 refers to the last item, -2 refers to the second-last item, etc.
Pythona=["Geeks","For","Geeks"]print("Accessing element from the list")print(a[0])print(a[2])print("Accessing element using negative indexing")print(a[-1])print(a[-3])
OutputAccessing element from the listGeeksGeeksAccessing element using negative indexingGeeksGeeks
Tuple Data Type
Just like a list, atuple is also an ordered collection of Python objects. The only difference between a tuple and a list is that tuples are immutable. Tuples cannot be modified after it is created.
Creating a Tuple in Python
In Python Data Types, tuplesare created by placing a sequence of values separated by a ‘comma’ with or without the use of parentheses for grouping the data sequence. Tuples can contain any number of elements and of any datatype (like strings, integers, lists, etc.).
Note: Tuples can also be created with a single element, but it is a bit tricky. Having one element in the parentheses is not sufficient, there must be a trailing ‘comma’to make it a tuple.
Python# initiate empty tupletup1=()tup2=('Geeks','For')print("\nTuple with the use of String: ",tup2)
OutputTuple with the use of String: ('Geeks', 'For')
Note - The creation of a Python tuple without the use of parentheses is known as Tuple Packing.
Access Tuple Items
In order to access the tuple items refer to the index number. Use the index operator [ ] to access an item in a tuple.
Pythontup1=tuple([1,2,3,4,5])# access tuple itemsprint(tup1[0])print(tup1[-1])print(tup1[-3])
3. Boolean Data Type in Python
Python Data type with one of the two built-in values, True or False. Boolean objects that are equal to True are truthy (true), and those equal to False are falsy (false). However non-Boolean objects can be evaluated in a Boolean context as well and determined to be true or false. It is denoted by the class bool.
Example: The first two lines will print the type of the boolean values True and False, which is <class 'bool'>.The third line will cause an error, because true is not a valid keyword in Python. Python is case-sensitive, which means it distinguishes between uppercase and lowercase letters.
Pythonprint(type(True))print(type(False))print(type(true))
Output:
<class 'bool'>
<class 'bool'>
Traceback (most recent call last):
File "/home/7e8862763fb66153d70824099d4f5fb7.py", line 8, in
print(type(true))
NameError: name 'true' is not defined
4. Set Data Type in Python
In Python Data Types,Setis an unordered collection of data types that is iterable, mutable, and has no duplicate elements. The order of elements in a set is undefined though it may consist of various elements.
Create a Set in Python
Sets can be created by using the built-in set() function with an iterable object or a sequence by placing the sequence inside curly braces, separated by a ‘comma’.The type of elements in a set need not be the same, various mixed-up data type values can also be passed to the set.
Example: The code is an example of how to create sets using different types of values, such as strings , lists , and mixed values
Python# initializing empty sets1=set()s1=set("GeeksForGeeks")print("Set with the use of String: ",s1)s2=set(["Geeks","For","Geeks"])print("Set with the use of List: ",s2)
OutputSet with the use of String: {'s', 'o', 'F', 'G', 'e', 'k', 'r'}Set with the use of List: {'Geeks', 'For'}
Access Set Items
Set items cannot be accessed by referring to an index, since sets are unordered the items have no index. But we can loop through the set items using a for loop, or ask if a specified value is present in a set, by using the in the keyword.
Pythonset1=set(["Geeks","For","Geeks"])print(set1)# loop through setforiinset1:print(i,end=" ")# check if item exist in setprint("Geeks"inset1)
Output{'Geeks', 'For'}Geeks For True
5. Dictionary Data Type
A dictionary in Python is a collection of data values, used to store data values like a map, unlike other Python Data Types that hold only a single value as an element, a Dictionary holds a key: value pair. Key-value is provided in the dictionary to make it more optimized. Each key-value pair in a Dictionary is separated by a colon : , whereas each key is separated by a ‘comma’.
Create a Dictionary in Python
Values in a dictionary can be of any datatype and can be duplicated, whereas keys can’t be repeated and must be immutable. The dictionary can also be created by the built-in functiondict().
Note - Dictionary keys are case sensitive, the same name but different cases of Key will be treated distinctly.
Python# initialize empty dictionaryd={}d={1:'Geeks',2:'For',3:'Geeks'}print(d)# creating dictionary using dict() constructord1=dict({1:'Geeks',2:'For',3:'Geeks'})print(d1)
Output{1: 'Geeks', 2: 'For', 3: 'Geeks'}{1: 'Geeks', 2: 'For', 3: 'Geeks'}
Accessing Key-value in Dictionary
In order to access the items of a dictionary refer to its key name. Key can be used inside square brackets. Usingget() method we can access the dictionary elements.
Pythond={1:'Geeks','name':'For',3:'Geeks'}# Accessing an element using keyprint(d['name'])# Accessing a element using getprint(d.get(3))
Python Data Type Exercise Questions
Below are two exercise questions on Python Data Types. We have covered list operation and tuple operation in these exercise questions. For more exercises on Python data types visit the page mentioned below.
Q1. Code to implement basic list operations
Pythonfruits=["apple","banana","orange"]print(fruits)fruits.append("grape")print(fruits)fruits.remove("orange")print(fruits)
Output['apple', 'banana', 'orange']['apple', 'banana', 'orange', 'grape']['apple', 'banana', 'grape']
Q2. Code to implement basic tuple operation
Pythoncoordinates=(3,5)print(coordinates)print("X-coordinate:",coordinates[0])print("Y-coordinate:",coordinates[1])
Output(3, 5)X-coordinate: 3Y-coordinate: 5
Quiz:Python Data Type
Related Posts:
Recommended Problems:
Explore more Exercises: Python Data Type Exercise

Type() in Python

List Introduction

Tuples in Python

Set in Python

Dictionary in Python