Important Notice:

Area of Circle

Area of Circle

3 views 1 min read

Area of Circle in Python (वृत्त का क्षेत्रफल) :-

Area of Circle का अर्थ है वृत्त के अंदर का कुल क्षेत्र (Total Space Inside the Circle)

Formula (सूत्र)  -     

                       Aπr2

जहाँ (Where):

  • π (Pi) = 3.14 (लगभग)
  • r = Radius (त्रिज्या)

 

Python Program -

# Input
radius = float(input("Enter radius: "))

# Area
area = 3.14 * radius ** 2

# Output
print("Area of Circle =", area)
 
Output -
Enter radius: 7
Area of Circle = 153.86

Related Notes