Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

area of a circle in python

#Area Of A Circle in python
R = int(input("Enter the radius of the circle: "))
PI = 22/7 #This is a constant
A = PI * R * R
print(A)
 
PREVIOUS NEXT
Tagged: #area #circle #python
ADD COMMENT
Topic
Name
2+2 =