Posts from Python

Loan Calculator in Python using Tkinter

By Sarbajit De

Here we are going to discuss creating a loan calculator in Python using Tkinter. Before moving in further let’s first understand what is Tkinter. Tkinter is a standard yet po.... Read More

Least Astonishment and the Mutable Default Argument in Python

By Varsha Neelamma

Python, as you may have observed is an easy and user-friendly language. However, sometimes you may come across tricky behavior in the language that may surprise you. One such behav.... Read More

How to detect language in Python

By Anudeep Pulluri

Hey Techie! today we are going to learn how to detect an unknown language using Python. Basically, in Python, we have modules for detecting any language. At first, the modules we a.... Read More

How to take input from the user until they enter valid input in Python?

By Varsha Neelamma

Consider you are solving a problem in which you need to take input from the user and validate the same. You will simply use the input() method and typecast it accordingly for the s.... Read More

Find the last occurrence of a character in a string using Python

By Anudeep Pulluri

Hey Coder! today we are going to learn how to find the last occurrence of a character in a string using Python. The approaches would be: By using an in-built rfind() function. By p.... Read More

How to get the file names without extension in Python

By Anudeep Pulluri

Hey coder! today, in this article let us learn how to get the file names without extension in Python. There are many ways where we can get the file names without the extension. By .... Read More

Interpolate a data frame in pandas

By Soma Shrenika

In this tutorial, we will learn the concept of interpolating the missing values in a data frame in Pandas. Interpolate method is different from fillna method. In fillna method, Nan.... Read More

Django – Submit Form data with Post Method

By Shamik Lahiri

In this tutorial, we will be learning how to submit form data using POST in Django. Submitting forms is an important aspect of any website, be it customer reviews, contact pages or.... Read More

Related Posts