Computer >> Computer tutorials >  >> Programming >> Python

Find the perimeter of a cylinder in Python Program


In this article, we will learn about the solution to the problem statement given below −

Problem statement

Input diameter and height, find the perimeter of a cylinder.

Perimeter is nothing but the side view of a cylinder i.e. a rectangle.

Therefore Perimeter= 2 * ( h + d )

here d is the diameter of the cylinder

h is the height of the cylinder

Find the perimeter of a cylinder in Python Program

Now let’s see the implementation

Example

# Function to calculate the perimeter of a cylinder
def perimeter( diameter, height ) :
   return 2 * ( diameter + height )
# main
diameter = 5 ;
height = 10 ;
print ("Perimeter = ",perimeter(diameter, height))

Output

('Perimeter =', 30)

All the variables and functions are declared in the global frame as shown in the figure below.

Find the perimeter of a cylinder in Python Program

Conclusion

In this article, we learned about finding the perimeter of a cylinder in Python 3.x. Or earlier.