Answers for "find the area of a circle"

6

area of a circle

def circle(radius):
	return radius * math.pi * 2
Posted by: Guest on February-03-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

Code answers related to "find the area of a circle"

Python Answers by Framework

Browse Popular Code Answers by Language