Showing posts with the label Python

Python Program: Reverse a Word - Simple and Efficient Word Reversal in Python

Certainly! Here's a Python program that accepts a word from the user and r…

Python program to convert month name to a number of days

Python program to convert month name to a number of days code:- print ( " …

Python program to check whether an alphabet is a vowel or consonant

Python program to check whether an alphabet is a vowel or consonant code:- str …

Python program to check the validity of a password

Python program to check the validity of a password Validation rules:- At least …

Python program to find those numbers which are divisible by 7 and multiple of 5, between 1500 and 2700

Python program to find those numbers which are divisible by 7 and multiple of 5…

Python program that accepts a word from the user and reverse

Write a Python program that accepts a word from the user and reverse it Example…

Python program to count the number of even and odd numbers from a series of numbers

Python program to count the number of even and odd numbers from a series of num…

Python program to display the current date and time

Python program to print the current date and time Python Dates A date in Python…

Python program to access a function inside a function

Python program to access a function inside a function A function defined inside…

Python function to create and print a list where the values are square of numbers

Python function to create and print a list where the values are square of numbe…

Python function that prints out the first n rows of Pascal’s triangle

Python function that prints out the first n rows of Pascal’s triangle  Pascal’s…

Python Program to Check Whether a String is a Palindrome or not

A string is said to be a palindrome  if the string read from left to right is e…

Load More That is All