w3resource

Python Math: Calculate the area of a regular polygon

Python Math: Exercise-28 with Solution

Write a Python program to calculate the area of a regular polygon.

Sample Solution:-

Python Code:

from math import tan, pi
n_sides = int(input("Input number of sides: "))
s_length = float(input("Input the length of a side: "))
p_area = n_sides * (s_length ** 2) / (4 * tan(pi / n_sides))
print("The area of the polygon is: ",p_area)

Sample Output:

Input number of sides: 4                                                                                      
Input the length of a side: 20                                                                                
The area of the polygon is:  400.00000000000006

Pictorial Presentation:

Python Math: Calculate the area of a regular polygon

Flowchart:

Flowchart: Calculate the area of a regular polygon

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to calculate distance between two points using latitude and longitude.
Next: Write a Python program to calculate wind chill index.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

Python: Tips of the Day

Get Current Process Id:

import os
os.getpid()
21423

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook