CO2
Write a program to find out the area
input from the user?
8 a circle by taking radius
Answers
Answered by
2
from math import pi
r = float(input("r: "))
print(f"Area of circle is: {pi * r * r:.2f}")
Answered by
0
Explanation:
from math import pi
r = float(input("r: "))
print(f"Area of circle is: {pi * r * r:.2f}")
Similar questions
English,
2 months ago
Business Studies,
2 months ago
English,
2 months ago
Social Sciences,
5 months ago
Social Sciences,
5 months ago
Math,
11 months ago
Math,
11 months ago