CBSE Class 11 Informatics Practices
Question 46 of 52
Python Programming Fundamentals — Question 46
Back to all questionsr
=
float
(
input
(
"Enter radius of circle: "
))
a
=
3.14159
*
r
*
r
print
(
"Area of circle ="
,
a
)
Output
Enter radius of circle: 7.5
Area of circle = 176.7144375