Showing 141 - 160 of 165 results
This Python program replaces every blank space in a given string with a hyphen ‘-‘. Program Statement Write a Python...
This Python program reverses a given string without using recursion. It uses a simple iterative approach to reverse the string....
In this Python program, we will print all the odd numbers within a given range. We will use a loop...
This Python program calculates the product of two numbers using recursion. Recursion is a powerful programming technique where a function...
This Python program checks if a given date is valid or not. It verifies if the provided date is in...
You can determine whether a number is a power of two by checking if it has only one bit set...
A perfect number is a positive integer that is equal to the sum of its proper divisors, excluding itself. For...
This Python program calculates the sum of the first N natural numbers. It defines a function called calculat_sum that takes...
This Python program checks if a number is a strong number or not. A strong number (also known as a...
The provided Python program is designed to find the prime factors of a given number. It utilizes a function called...
This Python program checks if two numbers are amicable numbers or not. Amicable numbers are pairs of numbers where the...
In this Python program, we will check whether a given number is prime or not. A prime number is a...
In this program, we will write a Python program to remove the odd-indexed characters from a given string. Problem statement...
In this Python program, we will implement a recursive function to reverse a string. Recursion is a technique where a...
In this Python program, we will convert Gray codes to binary codes. Gray code is a binary numeral system where...
In this Python program, we will generate Gray codes using recursion. Gray code is a binary numeral system where two...
In this Python program, we will convert a binary number to its corresponding Gray code. The Gray code is a...
This Python program generates the Fibonacci series without using recursion. It calculates and displays the first n Fibonacci numbers using...
This Python program uses recursion to generate the first n Fibonacci numbers and displays them in a list. Program Statement...
This Python program finds all perfect squares within a given range (inclusive) and displays them as a list. A perfect...

Categories

Archives