Top programming practicals in python

Top programming practicals for practice in python from beginner to advanced level.

We are updating this page every week and providing you with more and more programming practicals for your practice, so bookmark this page for the future.

Basic to Advance Python Programs

1.Python Program to Add Two Numbers
2.Print Numbers from 1 to 100 in Python
3.Write a python program to find the sum of N natural numbers.
4.Write a python program to find the multiplication of N natural numbers.
5.Python Program to Check Even or Odd Number
6.Write a python program to sort a list without using the sort function.
7.Write a python program to check for vowels or consonants.
8.Write a python program to filter odd and even numbers from the list.
9.How to Reverse a Number in Python
10.Leap Year Program in Python
11.Power Set Program in Python
12.Python program to count characters of string
13.Python program to find Factorial of N numbers (Using for-loop, while-loop, function, and recursion)
14.Sum of Digits of a number in python
15.Write a python program to check for Armstrong Numbers
16.Python Program to remove duplicates from the List
17.Python Program to Swap Two Numbers
18.Python Program to Replace all Vowels with given Character
19.Python Program to Find Power of a number without using pow function
20.Write a python program to check a perfect number.
21.Write a python program to print prime numbers from 1 to 100.
22.python program to print Fibonacci numbers
23.Simple Python Game: Rock, Paper, Scissors
24.Create a simple quiz game program in python with score
25.Create simple hangman game in python
26.Python program to make simple calculator
27.Number guessing game in python

Mathematical Programs in Python

28.Python Program to Calculate Area of Rectangle
29.Find the Area of a Triangle In Python
30.Write a Program to Calculate Area of Circle in Python

Matrix Programs in Python

31.Python Program to Add Two Matrices taking Input from User
32.Subtraction of Two Matrix in python with User input
33.Matrix multiplication in Python with user input
34.Transpose of a Matrix in Python with user input
35.Rotate a Matrix by 90 Degrees in python with User input

Recursion Programs in Python

36.Reverse a String Using Recursion in Python
37.How to Reverse a list using recursion in Python
38.Palindrome in Python using recursion
39.Write a python program for Fibonacci Series using the recursion
40.Factorial of N number in python using recursion

Pattern Programs in Python

41.Python Program to Print Hollow Square Pattern
42.Left triangle pattern
43.Right triangle pattern
44.Pyramid shape pattern
45.Inverted Pyramid shape pattern
46.Diamond shape pattern
47.Pascals shape pattern
48.Hourglass pattern
49.butterfly pattern

Searching Programs in Python

50.Linear Search in Python (with Source code)
51.Python Program for Binary Search