Enter radius of circle and print area of circle in Python


Write a program in python to enter radius of circle and print area of circle.

Note- area of rectangle= 3.14*r*r

r=int(input("Enter the radius: "))
area=3.14*r*r
print("Area of Circle is: ",area)

Output:-

Enter the radius: 4

Area of Circle is:  50.24


Post a Comment

0 Comments