Posts from Python

Replace Tkinter label text on button press in Python

By yaswanth vakkala

In this tutorial, let’s learn how to replace the tkinter label text on button press in Python. tkinter is the Python standard interface to the Tk/Tcl GUI toolkit. Using the t.... Read More

Python program to Sort elements by frequency

By Amruth Kumar

In this tutorial, we are going to sort elements in a list by their frequencies. To do this problem we have to first find the frequencies of elements. We can use dictionaries for fi.... Read More

How to run Cronjob in Django

By Shrimad Mishra

Hi folks, It’s been a year since I have written a blog, but now I have got an interesting problem to solve for you guys. At the end of this tutorial, I am sure you all will b.... Read More

Convert all string items of a list to integer in Python

By Saruque Ahamed Mollick

In this tutorial, I will show you how to convert all string items of a list to integer items in Python. It’s better to show an example of what I am going to do in this tutori.... Read More

Remove first n characters from a string in Python

By Saruque Ahamed Mollick

In this tutorial, we will learn how to remove the first n characters from a string in Python. We will cover these: The simplest way to remove the first n characters. (Slice notatio.... Read More

Scatter plot using ggplot2 in Python with customization

By yaswanth vakkala

Scatter plots are great for visually seeing the relationship between numerical variables. In this tutorial, we will learn how to plot scatter plots in ggplot2 in Python. ggplot2 is.... Read More

Access Quran in Python – 23 languages with dataset

By Saruque Ahamed Mollick

As-Salaam-Alaikum, in this tutorial, I will show you how to get Quran data and print ayah using Python. First of all, let me tell you one thing. In this post, I will show you just .... Read More

Python string format() method

By Rahul Yadav

In this blog, we are going to learn Python format() function with their implementation. So if you have learned C, JAVA, or  C++  before studying Python you know we used %c, %s, a.... Read More

Related Posts