Answer
The program prompts the user to enter the number of sides and their length of a regular polygon and displays its area.
Work Step by Step
The program prompts the user to enter the number of sides and their length of a regular polygon and displays its area.
$Code:$
import math
numberOfSides=int(input("Enter the number of sides:"))
side=float(input("Enter the side:"))
area=(numberOfSides*math.pow(side,2)/(4*math.tan(math.pi/numberOfSides)))
print("the area of polygon is ",area)