Answers for "perimeter and area of circle in python"

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
1

Area of a Circle in Python

R = float(input())

Area =  3.14159 * R * R

print("A=%0.4f" %Area)
Posted by: Guest on June-28-2021

Code answers related to "perimeter and area of circle in python"

Python Answers by Framework

Browse Popular Code Answers by Language