Posts by Anuj Gupta

Author Biographical Info: Not available

How to print math symbols in Python

By Anuj Gupta

In this tutorial, we will learn how to print math symbols in Python. We can use Unicode. Unicode is a standard encoding system that assigns a unique number to every character acros.... Read More

How to create clickable link with Tkinter in Python with Label

By Anuj Gupta

In this tutorial, we will learn how to create clickable link with custom label in Python with Tkinter. To achieve this task we are using the tkinter library for creating GUIs and w.... Read More

Assert once with multiple conditions in Python

By Anuj Gupta

In this tutorial, we will learn how to assert once with multiple conditions in Python. What is assert? In python, assert statement is used to check whether a condition is true or f.... Read More

jsonify() vs json.dumps() in Flask

By Anuj Gupta

In this tutorial, we will learn the difference between jsonify() vs json.dumps() in Flask in Python jsonify() The jsonify() function belongs from Flask framework. The jsonify() i.... Read More

How to fix: No module named ‘requests’ in Python

By Anuj Gupta

In this tutorial, we will learn how to fix ModuleNotFoundError: No module named ‘requests’ in Python When it occurs? The Python error “ModuleNotFoundError: No mod.... Read More

Rearrange columns in Dataframe in Python – Pandas

By Anuj Gupta

In this tutorial, we will learn how to Rearrange columns in Dataframe in Python. You are given a dataframe. Your task is to reorder/rearrange the data columns. There are many metho.... Read More

Python program to reverse a string using loop

By Anuj Gupta

In this tutorial, we will learn how to reverse a string using loop in Python. You are given a string. Your task is to reverse the string using loop. There are many inbuilt methods .... Read More

Water Jug Problem in Python

By Anuj Gupta

In this tutorial, we will learn how to solve the two-water jug problem in Python. PROBLEM STATEMENT: You are given two jugs with their capacities(in litres). Your task is to determ.... Read More

Related Posts