Star with 6 points (Python/Turtle)

vegaseat 1 Tallied Votes 5K Views Share

Just in time for the season, a star.
(Playing with my grandson on the Raspberry Pi computer)

''' turtle_star_six.py
draw a star with six points using Python module turtle
'''

import turtle as tu

def draw_star(x, y, side):
    star_angle = 360.0/6
    left_angle = star_angle * 2
    tu.penup()
    # start drawing here (default is center x=0, y=0)
    tu.goto(x, y)
    tu.pendown()
    for k in range(6):
        tu.forward(side)
        tu.right(star_angle)
        tu.forward(side)
        tu.left(left_angle)

x = -150
y = -50
side = 100
draw_star(x, y, side)

tu.done()