Computer Science, asked by harek0841, 2 months ago

Write a programme in phython to read radius of a circle and display it's perimeter

Answers

Answered by Anonymous
0

Answer:

Phython code :

from math import pi

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

print ("The area of the circle with radius " + str(r) + " is: " + str(pi * r**2))

Hope it helps you

Thank you

Similar questions