Author: Harry
Remove Words in Python
Today, we will see how to remove a sub-string or word in Python from a string or sentence. We will use replace() method from Python,…
Python Games Code | Copy and Paste
Hello friends, today, we will see all the Python games code which you can easily copy and paste into your system. We will see many…
Sum of n numbers in Python using for loop
Here, in the sum of n numbers in Python using for loop, n means a natural number i.e. counting numbers(1, 2, 3, 4, 5,…). Code…
Print Digit 9 in Python | Assignment Expert
Code to print digit 9 in Python is: Output: Also Read:
First Prime Number in Python | Assignment Expert
The prime number means a number that is divisible by itself and 1 only e.g. 2, 3, 5, 7, 11, 13, etc. So, the first…
Simple Calculator in Python
This is a simple calculator in Python, we have used the eval() method from Python to calculate all expressions. This method takes an expression in…
Average of Given Numbers in Python
We will use a list to save numbers and will find the average of given numbers in the list. We know that to find the…
Maximum in Python
There are two ways to find the maximum in Python, one is using for loop and the other is using the built-in function max(). We…
Case conversion in Python
Hello and welcome, in this post we will explore all the methods of Python strings that are used for case conversion in Python. We will…
Complete Python Roadmap for Beginners in 2022
Welcome to Python Complete Roadmap for Beginners. Today, we will see a sequence of topics that a beginner should follow to learn Python. Python is…