Posts from Python

How to calculate the time difference between two times in minutes in Python

By Sai Mukesh Reddy Gutha

Hello! In this article, we will calculate the time difference in minutes using Python. Python has a library called datetime to work with the date and time. We will be using the dat.... Read More

How to send whatsApp message using pywhatkit in Python

By Harish Mullagura

Now, we will see how to send whatsApp message through website web.whatsapp.com using pywhatkit in Python that can automatically send messages to any WhatsApp number. Send WhatApp m.... Read More

How to create table, insert data and fetch data in Oracle Database using Python

By Shubhodh Amaravadi

Hello coder! we have already learned how to connect the Oracle database to our python program. In this tutorial, we will learn how to create tables, insert data and fetch data in t.... Read More

How to download an image from a URL in Python

By Venkat Kumar

In this article, we will see how to download an image from a URL using Python. We will do this without making use of any browser. Let’s use the urllib module of Python for th.... Read More

Deque in Python with an example

By Anudeep Pulluri

Hey coder! In this tutorial, we are going to learn how to implement deque in Python using some simple operations. Deque stands for Doubly Ended Queue where we can add and delete th.... Read More

Resolve IndexError: list index out of range in Python

By Khushi Aswani

In this tutorial, we will be learning something about runtime error – List index out of range in Python. You know what, you can easily resolve it, but first of all you must k.... Read More

How to check the nature of roots of a Quadratic equation in Python

By GAURAV KUMAR SINGH

Solving the long-given mathematical formula of the discriminant to find the nature and values of the roots of the quadratic equation is sometimes a very tedious and time-consuming .... Read More

Geometry method in Tkinter | Python

By Manam Sampath Kumar Reddy

In this tutorial, we are going to learn the geometry method in Tkinter. Tkinter is a module used for GUI(Graphical User Interface) in Python. There are many libraries that provide .... Read More

Related Posts