Computer Science, asked by keerthi1149, 6 months ago

he diameter of the Cricket ground is 15000 cm. Write a python program to find the perimeter of the cricket ground. (Hint: d=15000, so, r=7500, perimeter p=2*pi*r)

Answers

Answered by apurva79
1

# Perimeter of a circle is called circumference

# Python programs are best

# Code

diameter = 15000

radius = diameter/2

# Returns Perimeter of the circle

def circumference(radii):

formula = (44*radii)/7

return str(formula)

# Console Output

print("Perimeter is " +circumference(radius))

# Mark as Brainliest

Similar questions