Skip to content

Commit 0b54594

Browse files
authored
Add files via upload
1 parent 3cf8b40 commit 0b54594

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Area perimeter/Circle.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)