 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Python Program to find the area of a circle
In this article, we will learn about the solution and approach to solve the given problem statement.
Problem statement −Given the radius of a circle, we need to find a circle.
The area of a circle can simply be evaluated using the following formula.
Area = Pi*r*r
Let’s see the implementation below −
Example
def findArea(r):    PI = 3.142    return PI * (r*r); # Driver method print("Area is %.6f" % findArea(5));  Output
Area is 78.550000
All variables and functions are declared in the global scope as shown in the figure below.

Conclusion
In this article, we learned about the approach to find whether it is possible to make a divisible by 3 numbers using all digits in an array.
Advertisements
 