Computer Science, asked by diksha24182018, 10 months ago

Write a Python program which accepts the radius of a circle from the user and compute
the area.​

Answers

Answered by sudhashevade
2

Answer:

#calculating the area

Explanation:

pie = 3.14

radius = int(input("enter your radius"))

area  = pipe * radius *  radius

print("the area of the circle is",area)

#I hope it   helps you :)

Answered by atrs7391
1

r = float(input("Enter the radius of the circle: "))

print("Area of the circle =", 3.14 * (r * r))

Similar questions