Python Lab Manual / Python Program to Calculate area of Circle

Program Name

Write a Python Program to Calculate area of Circle.
Theory
Area of circle = 3.14*Radius*Radius. So give Radius as input to compute the area of a circle.
Program Code


Input:
Enter the radius:10
Output:
Circle Area:  314.0


Home     Back