Anjeev Singh Academy

Python program to calculate the area and circumference of a circle

Python program to calculate the area and circumference of a circle

##########################################################
# Language : Python
# Topic: to calculate the area and circumference of a circle.
# Author : Anjeev Singh
##########################################################

radius = float(input("Enter Radius of circle : "))
pi = 3.14

area = pi * radius ** 2
print("\nArea of Circle : ", round(area,2))

circumference = 2 * pi * radius
print("\nCircumference of Circle : ", round(circumference,2))

Sorry! You cannot copy content of this page. Please contact, in case you want this content.

Scroll to Top