This repository contains mini projects made by me in Python, while I was learning Python.
| Sr | Title | Link |
|---|---|---|
| 01 | Classic "Hello World" | hello.py |
| 02 | Program to Check if a Number is Positive, Negative or Zero | negative_positive.py |
| 03 | Program to Check if a Number is Odd or Even | odd_even.py |
| 04 | Program to Swap Two Variables | swapping_two.py |
| 05 | Program to Find Maximum Number from 4 Numbers | four_num.py |
| 06 | Program to Display the Multiplication Table | multiplication_table.py |
| 07 | Simple Calculator Using Arithmetic Operators (Addition, Subtraction, Multiplication, Division, Modulus, Power) | calculator.py |
| 08 | Finding Areas of Different Shapes (Square, Rectangle, Triangle, Circle, Ellipse) | area_of_shapes.py |
| 09 | Program to Print Calendar | calender.py |
| 10 | Program to Check For Leap Year | leap_year.py |
| 11 | Program to Solve Quadratic Equation | quadratic_equation.py |
| 12 | Program to Convert Temperature from C to F or-to K and Vice-Versa | temperature_conversion.py |
| 13 | Program To Check For Prime Number | prime_num.py |
| 14 | Program to Print all Prime Numbers in a Range | print_prime.py |
| 15 | Program to Print all Non Prime Numbers in a Range | print_notprime.py |
| 16 | Program to Check Whether Given List is Palindrome or Not | palindrome.py |
| 17 | Program to Find the Factorial of a Number | factorial.py |
| 18 | Program to Print the Fibonacci sequence Upto N Terms | fibonacci.py |
| 19 | Program to Check Armstrong Number | armstrong_number.py |
| 20 | Program to Find Armstrong Number in a Range | print_armstrong.py |
| 21 | Program to Calculate Natural Logarithm of Number | calc_log.py |
| 22 | Program to Calculate Body Mass Index | calculate_bmi.py |
| 23 | Program to Convert Decimal to Binary | decimal_to_binary.py |
| 24 | Program to Convert Decimal to Hexadecimal | decimal_to_hexa.py |
| 25 | Program to Convert Decimal to Octal | decimal_to_octal.py |
| 26 | Program to Find Factorial of Number Using Recusrion | factorial_recursion.py |
| 27 | Program to Print Fibonacci Sequenc Using Recursion | fibonacci_recursion.py |
| 28 | Program to Find ASCII Value of a Character | find_ascii.py |
| 29 | Program to Find Highest Common Factor(HCF) | find_hcf.py |
| 30 | Program to Find Least Common multiple (LCM) | find_lcm.py |
| 31 | Program to Find the Sum of Natural Numbers | sum_natural_num.py |
| 32 | Program to Calculate Cube Sum of n Natural Numbers | sum_cube.py |
| 33 | Program to Calculate Square Sum of n Natural Numbers | sum_square.py |
| 34 | Program to Find the Sum Array Elements | sum_array.py |
| 35 | Program to Find the Largest Element of Array | array_largest.py |
| 36 | Program to Find the Smallest Element of Array | array_smallest.py |
| 37 | Program For Array Rotation | array_rotation.py |
| 38 | Program to Split The Array and Add The First Part to The End | array_split.py |
