From ebc82f1db1b2d4bb3e4b11a123ff77f75202775a Mon Sep 17 00:00:00 2001 From: PramodBobade <43037227+PramodBobade@users.noreply.github.com> Date: Sat, 22 Oct 2022 17:19:52 +0530 Subject: [PATCH] Create area_of_polygon.py --- Python/area_of_polygon.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Python/area_of_polygon.py diff --git a/Python/area_of_polygon.py b/Python/area_of_polygon.py new file mode 100644 index 00000000..b937c02c --- /dev/null +++ b/Python/area_of_polygon.py @@ -0,0 +1,5 @@ +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)