Python program to print leap years between two given years
Dear Reader, In this post I am going to write a core Python program to print Leap years!. First, we will get the start and end year from the user and then print the leap years between the start and the...
View ArticlePython Program to print Random Numbers
In this post, let’s write a simple Python program to print random numbers. To print random numbers it’s very simple in Python as it has a random package available in the Python core itself. Here is the...
View ArticlePython Program to print Prime numbers
In this post, I am going to write a simple Python 3 program to print the Prime numbers within a limit. Firstly, Let me explain what is a prime number. If you don’t know what is a prime number, here is...
View ArticlePython – Print Alphabets Uppercase & Lowercase
This post explains how to print English Alphabets in both Uppercase & Lowercase using core Python. Below is the ASCII values to print Alphabets, Alphabets in Uppercase ASCII range: 65 to 90...
View ArticlePython program to convert UPPERCASE to lowercase
In this post, I am going to write a very simple Python program to convert an UPPERCASE string to lowercase. Without wasting our time, let’s write the program now, I am going to use Python 3 syntax for...
View ArticlePython program to convert Kilometer to Miles
In this post, we are going to see how to convert Kms to Miles using a simple Python script. The formula for converting Kilometer to Miles is very simple, just dividing the value by 1.609. Let’s write...
View ArticlePython program to find if the entered number is Positive or Negative or Zero
In this post, I am going to write a simple Python script to check if the entered number is a Positive number or a Negative number or Zero. This python program is helpful for students who are learning...
View ArticlePython Program – Addition, Subtraction, Multiplication & Division
In this Python example, we are going to see how we can do mathematical operations such as Addition, Subtraction, Multiplication & Division. It’s fairly simple to do mathematical operations in...
View ArticlePython program to Strip Vowels from a String!
In this post, we are going to see how to write a PHP script to strip vowels from strings. This post could be useful for school/college students or beginner Python learners. I will use “array” and “for...
View ArticleGenerate random numbers in Python without using Random module
Generating random numbers in Python without using the built-in random the module can be challenging, as the process of generating truly random numbers requires specialized hardware or algorithms....
View Article