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:
Flowchart:
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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/math/python-math-exercise-28.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics