Python Program to Print Armstrong numbers between two intervals
Write a program to print all the Armstrong numbers in the given range A to B (including A and B). An N – digit number is an…
Python Program to Check if Given Input is a Letter, Digit or Special Character
Letter, Digit or Special Character You are given a character as input. Check if the given input is a Lowercase Letter or Uppercase Letter or Digit or…
Interleave Strings | Python Program to merge two strings by adding characters in alternating order
Interleave Strings Given two strings, write a program to merge the given two strings by adding characters in alternating order, starting with the first string. If a…
Python Program to Check if given colors are present in the color palate
Shekhar is an artist. He likes to draw and paint. He is now drawing a portrait of a city road which is in the black color and…
Python Program to Check the eligibility criteria for donor
Python Comparison Operators An XYZ hospital has organised a blood donation camp. The eligibility criteria for donor was as follows 1) Age>=18 2) Weight >=50 kg 3)…
Python Program to Convert Temperature from Celsius to Fahrenheit & Kelvin and Vice Versa
Temperature Conversion You are given the temperature T of an object in one of Celsius, Fahrenheit, and Kelvin scales. Write a program to print T in all…
Simple Calculator Program in Python
Write a python program to create a menu-driven calculator that performs the basic arithmetic operations (+, -, *, /, and %). Input The input will be a…
Python Program to Print the Frequency of each word in S
Word Count Given a sentence S, write a program to print the frequency of each word in S. The output order should correspond with the word’s input…