Write a python program to find the circumference of a circle

 Write a python program to find the circumference of a circle 

Code:-

PI=3.14

r=float(input("Radius:- "))

c=2*PI*r

print('Circumference:- %.2f'%c)


Output:-




Post a Comment

0 Comments