write a python code to accept the redius of a cirle and calculate the are and perimeter of a circle
Answers
Answered by
0
Python: Area of a Circle
In geometry, the area enclosed by a circle of radius r is πr2. Here the Greek letter π represents a constant, approximately equal to 3.14159, which is equal to the ratio of the circumference of any circle to its diameter.
Python: Area of a circle
Sample Solution:-
Python Code:
from math import pi
r = float(input ("Input the radius of the circle : "))
print ("The area of the
Answered by
0
Similar questions
Math,
3 months ago
Social Sciences,
3 months ago
English,
6 months ago
English,
6 months ago
Biology,
11 months ago
Social Sciences,
11 months ago