Python program to find area of square
In this program, we will learn how to find the area of square. It’s very easy to calculate the area of a square only thing we need to know is the formula for the area of a square which is a*a
#Python program to find area of square
a=int(input(“enter values of side of square: “))
area=a*a
print(“area of square is = “,area)
Output
enter value of side of square: 25
area of square is = 625
Python Program to add two numbers
Python program to find Area of Square
Python program to find Area of Triangle
Python program to swap two variables
Python program to convert Celsius to Fahrenheit
Python program to generate Random Number
Python program to convert Miles to Kolometers
Python program to find Largest of 2 numbers
Python program to check if number is Odd or Even
Python program to check if number is Positive Negative or Zero
Python program to check Leap Year
Types of Loop in Python
Python program to check Prime Number
Python program to Calculate Sum of N Natural Numbers
Python program to find sum of All Even Number between 1 to 10
Python program to find sum of All Odd Number between 1 to 10
Python program to check Armstrong Number