From 48e8fd454669f7ecbca75e7ba530d915514eadac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kn=C3=BCttel?= Date: Wed, 31 Oct 2018 15:53:43 +0100 Subject: [PATCH] fixed heptagon in ex06 --- ex_06.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ex_06.py b/ex_06.py index 27c1b6d..322f6a7 100644 --- a/ex_06.py +++ b/ex_06.py @@ -5,7 +5,7 @@ import turtle # The sum of the inner angles of a polygon # in an euclidian plane: -n = 5 +n = 7 inner_angle_sum = (n - 2) * 180 # Distance between two vertices