Posts by Uddeshya Mishra

Author Biographical Info: Not available

How to call a user-defined function in Python 3?

By Uddeshya Mishra

A function is a set of organized instructions defined under a block. Python being a powerful language has a lot of in-built functions, for instance, we can mention print(), len() a.... Read More

How to convert binary to decimal in Python

By Uddeshya Mishra

In this tutorial, we will learn how to convert binary numbers to decimal in Python. Here we will discuss 2 ways in which we can do it. Using in-built function Using for loop Using .... Read More

Python program to split a string on the last occurrence of the delimiter

By Uddeshya Mishra

In this tutorial, we will learn how to split a string on the last occurrence of the delimiter in Python. So, what is a delimiter? A delimiter is a character that we use to define t.... Read More

Python program to merge two lists and sort it

By Uddeshya Mishra

In this tutorial, we will learn about writing a Python program to merge two lists and then sort it This tutorial may also be helpful while working on multiple lists. Python allows .... Read More

How to merge two dictionary in Python

By Uddeshya Mishra

In this article, we will learn to Merge Dictionaries in Python. Dictionary is a powerful data structure in Python which provides a .update() method. This method updates the current.... Read More

How to print percentage sign(‘%’) in Python

By Uddeshya Mishra

In this tutorial, we will learn how to print a percentage sign (‘%’) in Python. ‘%’ sign also denotes modulo operator (a%b) which returns the remainder as w.... Read More