Cleaned up file structure. Completed tutorial 1.5.

This commit is contained in:
dan
2022-12-16 00:10:35 -05:00
parent d769edc908
commit fce30321a7
8 changed files with 83 additions and 31 deletions

18
Python/main.py Normal file
View File

@@ -0,0 +1,18 @@
import gen
import turtle
window = turtle.Screen()
win_height = window.window_height()
win_width = window.window_width()
asdf = turtle.Turtle()
window.tracer(delay=None)
asdf.hideturtle()
steps = 215
history = []
history = gen.first(steps, asdf)
print(history)