The formula to calculate the area of circle is π(pi)*r^2. The value of π is equal to 3.14(approx)
#Calculate area of a circle a=float(input("Enter radius of the circle: ")) area=3.14*a*a print("Area of the circle is: ", area)
Output