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 3cf8b40 commit 0b54594Copy full SHA for 0b54594
Area perimeter/Circle.py
@@ -0,0 +1,6 @@
1
+from math import *
2
+r=float(input("Enter Radius of Circle :: "))
3
+area=pi*r*r
4
+circumference=2*pi*r
5
+print("\nArea of Circle is",area)
6
+print("\nCircumference of Circle is",circumference)
0 commit comments