Skip to content

Commit 1cf884a

Browse files
authored
Create Circle
1 parent d0a5cfd commit 1cf884a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Area perimeter/Circle

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)