Python Programs: Basic
- Write Python program to print “Hello World!”
- Write Python program to add two numbers
- Write Python program to find average of two numbers
- Write Python program to find absolute value of number
- Write Python program to print number, its square and cube
- Write Python program to demonstrate use of formatting (%0.2d, %0.4f)
- Write Python program to demonstrate use of data types (int, float, char, double)
- Write Python program to print size of all data types
- Write Python program to print ASCII value of entered character
- Write Python program to read input from keyboard
- Write Python program to convert case of entered character
Python Programs: Operators
- Write Python program to demonstrate various arithmetic operation (+, -, *, /, %, ^)
- Write Python program to demonstrate comparison operator (<, >, <=, >=, ==, !=)
- Write Python program to demonstrate logical operator (&&, ||, ! )
- Write Python program to demonstrate increment / decrement operator (++, –)
- Write Python program to demonstrate compound operator (+=, -=, *=, /=)
- Write Python program to demonstrate bit wise operator (&, |, <<, >>, ~)
- Write Python program to demonstrate ternary operator (?)
- Write Python program to find quotient and remainder of number
- Write Python program to swap two numbers
- Write Python program to Add two different time
Python Programs: Area and Volume
- Write Python Program to Find Diameter, Circumference and Area of Circle
- Write Python Program to Find Area of Triangle
- Write Python Program to Find Area of an Isosceles Triangle
- Write Python Program to Find Area of an Equilateral Triangle
- Write Python Program to Find Area and Perimeter of a Square
- Write Python Program to Find Area and Perimeter of Rectangle
- Write Python Program to Find Area and Perimeter of a Rhombus
- Write Python Program to Compute Volume and Surface Area of a Cube
- Write Python Program to Compute Volume and Surface Area of a Cuboid
- Write Python Program to Compute Volume and Surface Area of a Cone
- Write Python Program to Compute Volume and Surface Area of Sphere
- Write Python Program to Compute Volume and Surface Area of a Cylinder
Python Programs: Equations
- Write Python Program to Find Roots of Quadratic Equation
- Write Python Program to Compute Simple Interest
- Write Python Program to Compute Gross Salary From Basic, DA and HRA
- Write Python Program to Convert From Celsius to Fahrenheit
- Write Python Program to Convert From Fahrenheit to Celsius
- Write Python Program to Convert Minutes to Hours
- Write Python Program to Convert Days to Year, Month, Week and day
Python Programs: If-Else
- Write Python Program to Check if Given Number is Positive
- Write Python Program to Check if Given Character is Vowel or Consonant
- Write Python Program to Check Given Year is Leap Year or Not
- Write Python Program to Check if Given Number is Odd or Even
- Write Python Program to Find Maximum Number From Two Numbers
- Write Python Program to Scan Age of Candidate and Print if He/She is Eligible for Driving Licence or Not
- Write Python Program to Print Gender (‘F’, ‘f’: Female,…)
- Write Python Program to Check Type of Triangle
- Write Python Program to Check if Triangle is Valid or Not using Angles
- Write Python Program to Check if Triangle is Valid or Not using Sides
- Write Python Program to Find Largest of Three Numbers.
- Write Python Program to Print the Grade Based on Percentage
- Write Python Program to Check if Given Number is Integer or Float
Python Programs: Switch-Case
- Write Python Program to Check if Given Number is Odd or Even using Switch Case
- Write Python Program to Print Day Based on Given Number using Switch Case
- Write Python Program to Print Gender using Switch Case (‘F’, ‘f’: Female,…)
- Write Python Program to Implement Calculator Using Switch Case
Python Programs: For Loop
- Write Python Program to Print “Hello world” 10 Times using For loop
- Write Python Program to Print First n Numbers using For loop
- Write Python Program to Print First n Numbers in Reverse Order using For loop
- Write Python Program to print odd numbers between 1 to n using For loop
- Write Python Program to print first n odd numbers using For loop
- Write Python Program to Add All Numbers up To n using For loop (1 + 2 + 3 + …. + n)
- Write Python Program to display a-z characters using For loop
- Write Python Program to print multiplication table of 5 using For loop (5 x 1 = 5)
- Write Python Program to print multiplication table of n up to m using For loop
- Write Python Program to Find Factorial of n using For loop
- Write Python Program to Print Fibonacci Series using For loop
- Write Python Program to print nPr using For loop
- Write Python Program to print nCr using For loop
- Write Python Program to count number of digits in given number using For loop
- Write Python Program to Add Digits of Number using For loop
- Write Python Program to print First Digit of Number using For loop
- Write Python Program to print First and Last Digit of a Number using For loop
- Write Python Program to Swap First and Last Digit of a Number using For loop
- Write Python Program to Reverse The Number using For loop
- Write Python Program to Print Numbers Between 1 and n Divisible By m using For loop
- Write Python Program to Print All Divisor of Number using For loop
- Write Python Program to Check if Given Number is Prime or Not using For loop
- Write Python Program to Print First n Prime Numbers using For loop
- Write Python Program to Print All Prime Numbers Between 1 and n using For loop
- Write Python Program to Print All Prime Numbers Between n and m using For loop
- Write Python Program to Check If Given Number is Palindrome or Not using For loop
- Write Python Program to Print First n Palindrome Numbers using For loop
- Write Python Program to Print All Palindrome Numbers Between 1 and n using For loop
- Write Python Program to Print All Palindrome Numbers Between n and m using For loop
- Write Python Program to Check if Give Number is Armstrong or Not using For loop
- Write Python Program to Print First n Armstrong Numbers using For loop
- Write Python Program to print all Armstrong numbers Between 1 and n using For loop
- Write Python Program to print all Armstrong numbers Between n and m using For loop
- Write Python Program to Check the Number is a Krishnamurthy Number using For loop
- Write Python Program to Check if Given Number is Perfect Square or Not using For loop
- Write Python Program to Check Number is a Prime, Armstrong, or Perfect Square using For loop
- Write Python Program to Print if Numbers Are Same or Not by Comparing Individual Digits. using For loop
- Write Python Program to Find GCD Two Numbers using For loop
- Write Python Program to Find LCM of Two Numbers using For loop
- Write Python Program to Find All Factors of Number using For loop
- Write Python Program to Find Prime Factors of Number using For loop
Python Programs: While Loop
- Write Python Program to Print “Hello world” 10 Times using While loop
- Write Python Program to Print First n Numbers using While loop
- Write Python Program to Print First n Numbers in Reverse Order using While loop
- Write Python Program to print odd numbers between 1 to n using While loop
- Write Python Program to print first n odd numbers using While loop
- Write Python Program to Add All Numbers up To n using While loop (1 + 2 + 3 + …. + n)
- Write Python Program to display a-z characters using While loop
- Write Python Program to print multiplication table of 5 using While loop (5 x 1 = 5)
- Write Python Program to print multiplication table of n up to m using While loop
- Write Python Program to Find Factorial of n using While loop
- Write Python Program to Print Fibonacci Series using While loop
- Write Python Program to print nPr using While loop
- Write Python Program to print nCr using While loop
- Write Python Program to count number of digits in given number using While loop
- Write Python Program to Add Digits of Number using While loop
- Write Python Program to print First Digit of Number using While loop
- Write Python Program to print First and Last Digit of a Number using While loop
- Write Python Program to Swap First and Last Digit of a Number using While loop
- Write Python Program to Reverse The Number using While loop
- Write Python Program to Print Numbers Between 1 and n Divisible By m using While loop
- Write Python Program to Print All Divisor of Number using While loop
- Write Python Program to Check if Given Number is Prime or Not using While loop
- Write Python Program to Print First n Prime Numbers using While loop
- Write Python Program to Print All Prime Numbers Between 1 and n using While loop
- Write Python Program to Print All Prime Numbers Between n and m using While loop
- Write Python Program to Check If Given Number is Palindrome or Not using While loop
- Write Python Program to Print First n Palindrome Numbers using While loop
- Write Python Program to Print All Palindrome Numbers Between 1 and n using While loop
- Write Python Program to Print All Palindrome Numbers Between n and m using While loop
- Write Python Program to Check if Give Number is Armstrong or Not using While loop
- Write Python Program to Print First n Armstrong Numbers using While loop
- Write Python Program to print all Armstrong numbers Between 1 and n using While loop
- Write Python Program to print all Armstrong numbers Between n and m using While loop
- Write Python Program to Check the Number is a Krishnamurthy Number using While loop
- Write Python Program to Check if Given Number is Perfect Square or Not using While loop
- Write Python Program to Check Number is a Prime, Armstrong, or Perfect Square using While loop
- Write Python Program to Check if All Digits of Number Are Same or Not using While loop
- Write Python Program to Find GCD Two Numbers using While loop
- Write Python Program to Find LCM of Two Numbers using While loop
- Write Python Program to Find All Factors of Number using While loop
- Write Python Program to Find Prime Factors of Number using While loop
Python Programs: Number System / Base Conversion
- Write Python Program to Convert Decimal to Binary
- Write Python Program to Convert Decimal to Octal
- Write Python Program to Convert Decimal to Hexadecimal
- Write Python Program to Convert Binary to Decimal
- Write Python Program to Convert Binary to Octal
- Write Python Program to Convert Binary to Hexadecimal
- Write Python Program to Convert Octal to Binary
- Write Python Program to Convert Octal to Decimal
- Write Python Program to Convert Octal to Hexadecimal
- Write Python Program to Convert Hexadecimal to Binary
- Write Python Program to Convert Hexadecimal to Octal
- Write Python Program to Convert Hexadecimal to Decimal
Python Programs: Array
- Write Python Program to Initialize an Array in Program and Print it
- Write Python Program to Scan and Print Array of Size n
- Write Python Program to Print Array in Reverse Order
- Write Python Program to Find Number of Elements in Array
- Write Python Program to Add All the Elements of an Array
- Write Python Program to Find an Element From an Array (Linear Search)
- Write Python Program to Find Average of Elements of an Array
- Write Python Program to find Mean, Variance and Standard Deviation of an Array
- Write Python Program to Check if Given Array is Sorted or Not
- Write Python Program to Find Maximum and Minimum From Array
- Write Python Program to Find Second Smallest and Second Largest Element from an Array
- Write Python Program to Count Positive, Negative and Zeros in an Array
- Write Python Program to Sum Positive and Negative Elements in Array
- Write Python Program to Compare Two Arrays
- Write Python Program to Count Odd and Even Numbers in Given Array
- Write Python Program to Count Occurrence of Given Element in an Array
- Write Python Program to Replace Array Elements by Given Value
- Write Python Program to Delete Duplicate Element From an Array
- Write Python Program to Delete Element From an Array by Value
- Write Python Program to Delete Element From an Array by Location
- Write Python Program to Insert an element in an Array at Given Location
- Write Python Program to Implement Binary Search
Python Programs: Matrix
- Write Python Program to Initialize 3 x 3 Matrix and Print it
- Write Python Program to Scan and Print 3 x 3 Matrix
- Write Python Program to Add Two Matrices of Size 3 X 3.
- Write Python Program to Multiply Two Matrices of Size 3 X 3.
- Write Python Program to Find Norm and Trace of Matrix of Size 3 X 3.
- Write Python Program to Find Row Sum and Column Sum of Matrix of Size 3 X 3.
- Write Python Program to Find Sum of Diagonal, and Non Diagonal Elements of 3X3 Matrix
- Write Python Program to Traverse Matrix Helically.
- Write Python Program to Check if Given Matrix is Magic Matrix or Not
- Write Python Program to Print Lower and Upper Triangle of Matrix
- Write Python Program to Compute Transpose of Matrix
Python Programs: String
- Write Python Program to Initialize and Print String
- Write Python Program to Scan and Print String
- Write Python Program to Find Length of String
- Write Python Program to Reverse String
- Write Python Program to Count Number of Occurrence of Character in String
- Write Python Program to Compare Two Strings
- Write Python Program to Copy String in Another String
- Write Python Program to Concat Two Strings
- Write Python Program to Check if Given String is Palindrome or Not
- Write Python Program to Delete White Spaces From the String
- Write Python Program to Remove all Vowels From String
- Write Python Program to Count Vowel, Consonant and White Space from String.
- Write Python Program to Convert String in Upper Case, Lower Case and Toggle Case
- Write Python Program to Delete Given Character From the String
- Write Python Program to Insert Sub String at Specific Location
- Write Python Program to Find Sub String from the Given String
- Write Python Program to Count Occurrence of Word in Given String
- Write Python Program to Remove Given Word From the String
- Write Python Program to check valid username and password (print: success or failure)
Python Programs: Recursion
- Write Python Program to Add Two Numbers using Recursion
- Write Python Program to Add Digits of Number using Recursion
- Write Python Program to Find Factorial of Number Using Recursion
- Write Python Program to Find Fibonacci Series Using Recursion
- Write Python Program to Find Maximum Number From Array Using Recursion
- Write Python Program to Add First n Numbers using Recursion
- Write Python Program to Find Sum of All Array Elements Using Recursion
- Write Python Program to Search Element From Array Using Recursion
- Write Python Program to perform Binary Search using Recursion
- Write Python Program to Find GCD of Two Numbers using Recursion
- Write Python Program to Find LCM of Two Numbers using Recursion
- Write Python Program to Find the Sum of Natural Numbers using Recursion
- Write Python Program to Reverse a Number Using Recursion
- Write Python Program to Reverse a String Using Recursion
- Write Python Program to Check if Given Number is Palindrome or Not using Recursion
- Write Python Program to Check if Given String is Palindrome or Not using Recursion
- Write Python Program to Calculate the Power using Recursion
Python Programs: Patterns
Pattern 1:
* * *
* * *
* * *
Pattern 2:
* * *
* *
* * *
Pattern 3:
* * * * * *
* * * * * *
* * * * * *