Answers for "area of a circle python program"

3

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)
Posted by: Guest on April-21-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 "area of a circle python program"

Python Answers by Framework

Browse Popular Code Answers by Language