- This event has passed.
7:00 PM- Intro to Python – Joshua
April 16 @ 7:00 pm - 8:00 pm
Today We Did
– We reviewed making shapes with go to
- How we can take a shape we create and use functions to draw it anywhere
Homework
I want you to make some cool shapes , and then turn it into functions where I can control its location and its color.
The shapes I want you to do is
1. The triforce/triangle in a triangle from last classes homework
“”” For those who don’t have it for triforce
turtle.goto(100,0)
turtle.goto(50,100)
turtle.goto(0,0)
turtle.goto(50,0)
turtle.goto(75,50)
turtle.goto(25,50)
turtle.goto(50,0)
“””
2. A star that you need to create yourself
Look at the drive for an example with square