Posts from Python

Calculate the average of a number’s digits in Python

By Souhardya Ganguly

In this Python tutorial, we shall be seeing how to calculate the average of the digits of a number. What exactly does this mean? Consider the number 537. The average of its digits .... Read More

Secure Passwords Using Python

By Aayushi Agrawal

Hello, friends! In this tutorial, we are going to create a Python application to secure any password that you want for more security. So let’s get started! Create Secure Pass.... Read More

How to easily create tables in Python using tabulate function

By Aayushi Agrawal

Hello friends! In this tutorial, we are going to learn how to create well-formatted tables in Python using tabulate function and how to use different arguments and parameters to ch.... Read More

Create an Audiobook from PDF file using Python – Text to speech

By Ashika Pemmaiah

Hey there! In this tutorial, we will be learning to convert any regular PDF into an Audiobook using Python in PyCharm. Here this program will read aloud any PDF file. We can say th.... Read More

Income tax calculator using Python

By Aayushi Agrawal

Hello friends! In this tutorial, we will build a Python program that can help us to calculate income tax based on given conditions. Remember that conditions are not fixed as income.... Read More

Python Program to Calculate Electricity Bill

By Aayushi Agrawal

Hello friends! In this tutorial, we are going to build a python program that can help us to calculate our electricity bill based on our given inputs and conditions. Remember that c.... Read More

Python program to display the powers of a number

By Aayushi Agrawal

Hello friends! In this tutorial, we are going to write a simple Python program that can display the powers of an integer or number up to nth terms using an anonymous function. Befo.... Read More

Python program to create bank account class

By Aayushi Agrawal

Hello friends! In this tutorial, we will learn how to write a Python program using OOP concept to create a bank account class using the deposit, withdraw and display function. It c.... Read More