Write the program toin python To …
CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Panther Tech 4 years ago
- 1 answers
Related Questions
Posted by Jaysundar Vc 5 months ago
- 0 answers
Posted by Jeevesh Jeevesh 4 months, 4 weeks ago
- 1 answers
Posted by Catherine Tympuiñ 4 months, 1 week ago
- 0 answers
Posted by S A 4 months, 2 weeks ago
- 0 answers
Posted by Payal Kumari 8 months, 1 week ago
- 0 answers
Posted by Sanchi Kohati 4 months, 1 week ago
- 0 answers
Posted by Sameeha _ 3 months, 3 weeks ago
- 0 answers
Posted by Manasvi Bhutada 5 months ago
- 1 answers
Posted by Catherine Tympuiñ 4 months, 1 week ago
- 1 answers
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Gaurav Seth 4 years ago
Area of a circle can simply be evaluated using following formula.
<pre> Area = pi * r2 where r is radius of circle </pre>Python3
<i id="copy-code-button" title="Copy Code">filter_none</i>
<i id="run-and-edit-button" lang="python3" title="Edit Code">edit</i>
<i id="run-code-button" lang="python3" title="Run Code and See Output">play_arrow</i>
<i title="Dark Mode">brightness_4</i>
<code># Python program to find Area of a circle </code>
<code> </code>
<code>def</code> <code>findArea(r): </code>
<code> </code><code>PI </code><code>=</code> <code>3.142</code>
<code> </code><code>return</code> <code>PI </code><code>*</code> <code>(r</code><code>*</code><code>r); </code>
<code> </code>
<code># Driver method </code>
<code>print</code><code>(</code><code>"Area is %.6f"</code> <code>%</code> <code>findArea(</code><code>5</code><code>)); </code>
0Thank You