Function in Python

Suppose we are creating an application and we need to write some fixed code regularly, instead of writing every time, we can create a function and call whenever required. in this tutorial, we will learn how to create, define, and call a function in Python. What is a Function A function is a block of…

Read More »

String in Python

In this, string in Python tutorial we will learn how to create, access, format, update and delete strings. What is a String The String is a sequence of characters, also known as the text. Each character of the string has a unique index number starting from zero (0). Negative indexing is also possible in Python,…

Read More »

Set in Python

In this Python tutorial, we will learn about sets. Here we will discuss, how to create, update, delete and other operations performed on set in Python. What is a Set A set is an unordered collection of objects. A set is an unindexed collection in Python. Each element in the set is unique. Set is…

Read More »

Dictionary in Python

In this tutorial, we will learn about the dictionary in Python. Here we will have many examples to create, insert, update and delete an element from the dictionary. What is a Dictionary It is an unordered collection of elements. Each element in the Dictionary has key and value. Key and value pairs are separated with…

Read More »

Tuple in Python

In this easy tutorial, we will learn about Tuple in Python. Here, we will discuss how to create, access, slice, insert, update and delete elements from Python Tuple with example. A Tuple in Python is a sequence of different objects, different objects mean different types of data can be store in a Tuple. The Tuple…

Read More »