Added exercise 6

gol
Daniel Knüttel 2018-10-31 13:48:30 +01:00
parent b8ebb1472c
commit fb538f3bf6
1 changed files with 20 additions and 0 deletions

20
ex_06.py 100644
View File

@ -0,0 +1,20 @@
#!/usr/bin/python3
import turtle
# The sum of the inner angles of a polygon
# in an euclidian plane:
n = 5
inner_angle_sum = (n - 2) * 180
# Distance between two vertices
l = 70
for i in range(n):
turtle.forward(l)
turtle.right(180 - inner_angle_sum / n)
turtle.mainloop()