diff --git a/scripts/regular_polygon_angle.py b/scripts/regular_polygon_angle.py new file mode 100644 index 0000000..b50a5dd --- /dev/null +++ b/scripts/regular_polygon_angle.py @@ -0,0 +1,8 @@ +#authors: Alvaro Aguilar & Alvaro Sanchez + +print "Welcome to the regular polygon angle calculator" + +sides = raw_input("Enter number of sides: ") + +angle = (360/float(sides)) +print "result: ", angle \ No newline at end of file