Shape-O-Matic
Shape-O-Matic
Shape-O-Matic
Task 1:
Task 1:
Create a program that draws a square using a for loop.
Create a program that draws a square using a for loop.
import turtle as t
for i in range(4):
t.forward(100)
t.left(90)
Task 2:
Task 2:
Modify your program to create a triangle
Modify your program to create a triangle
import turtle as t
for i in range(4):
t.forward(100)
t.left(90)
Task 3:
Task 3:
Modify your program to create a pentagon
Modify your program to create a pentagon
import turtle as t
for i in range(4):
t.forward(100)
t.left(90)
Exterior Angles
Exterior Angles
Sum of Exterior Angles
Sum of Exterior Angles
Video Walk-through
Video Walk-through
Final Code
Final Code