Articles

Python break statement

The break is a keyword in python which is used to bring the program control out of the loop..

  • Python
  • 418 Views

Python While loop

The Python while loop allows a part of the code to be executed until the given condition returns false. It is also known as a pre-tested loop..

  • Python
  • 449 Views

Python If-else statements

Decision making is the most important aspect of almost all the programming languages. As the name implies, decision making allows us to run a particular block of code for a particular decision..

  • Python
  • 451 Views

Python Comments

Python Comment is an essential tool for the programmers. Comments are generally used to explain the code. We can easily understand the code if it has a proper explanation..

  • Python
  • 541 Views

Python Class and Objects

Suppose a class is a prototype of a building. A building contains all the details about the floor, rooms, doors, windows, etc. we can make as many buildings as we want, based on these details..

  • Python
  • 444 Views

Python OOPs Concepts

An object-oriented paradigm is to design the program using classes and objects. The object is related to real-word entities such as book, house, pencil, etc.The oops concept focuses on writing the reusable code..

  • Python
  • 476 Views

Python Data Types

Variables can hold values, and every value has a data-type. Python is a dynamically typed language; hence we do not need to define the type of the variable while declaring it..

  • Python
  • 569 Views

How to Install Python 3.9 on Ubuntu 20.04, Linux Mint 20

A simple guide to install python 3.9 on ubuntu 20.04, Linux Mint 20, 20.1, 20.2, 20.3.

  • Python
  • 575 Views