Answers for "what is area of circle formula"

3

how to find area of circle

def circle(radius):
	3.14 * radius * radius 
circle(12)
Posted by: Guest on May-24-2021
4

circle python programe

#Area and circumference of a circle.
r=float(input('Enter the radius of the circle :'))
pi=22/7
area=pi*r**2
circumference=2*pi*r
print('The area of the circle is',area)
print('The circumference of the circle is',circumference)
_______________________________________________________________________________
Posted by: Guest on November-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language