Python Data Types

String Methods in Python: Part-2

Welcome to the second part of this series on string methods in Python! Here, I shall be telling you about so…

String Methods in Python: Part-1

Hello, readers. I am going to explain some important string methods in Python in this multi-part series. I …

Python Tuples

Tuples are another one of the 4 in-built data types in Python. They are very similar to lists but have some …

Python Lists : Part 2

In the previous post, I have covered the basics of Python lists. Here, I am going to give some more informat…

Python Lists : Part - 1

What are lists? In Python, lists are used to store multiple items in a single variable. All values in …

Booleans in Python

Boolean is an in-built data type of Python. It is used to represent two values: True or False . For e…

Numbers in Python

Types of numbers in Python Python has three built in numeric data types- Integer ( int ) …

Data Types in Python

What are Data Types? Data types are the classification or categorisation of knowledge items. It repres…

Load More
That is All