While Loop in Python

While Loop in Python While loop is one of the two major loops available in Python which are for loop

Read more

If Else in Python

If Else in Python If else in Python are a set of control statements that literally control flow of code.

Read more

Dictionary in Python

Dictionary in Python Dictionary in Python is a containers of key-value pairs. Each key-value pair is an element of the

Read more

Python Sets

Python Sets Python sets are containers of different or same type of elements. These elements are unordered which implies that

Read more

Tuples in Python

Tuples in Python Tuples in Python are a kind of containers which stores elements of same or different types. These

Read more

Lists in Python

Lists in Python Lists in Python are a collection of elements of different data types. Elements of a list are

Read more

Python Type Casting

Python Type Casting Python type casting is the process in which data type of one variable is changed to another

Read more

Python Numbers

Python Numbers Python numbers are different numeric values used in mathematical calculations. They are immutable data types because changing the

Read more