We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b085575 commit 1bba583Copy full SHA for 1bba583
area-of-circle.py
@@ -0,0 +1,6 @@
1
+
2
+def findArea(r):
3
+ PI = 3.142
4
+ return PI * (r*r);
5
6
+print("Area is %.6f" % findArea(5));
0 commit comments