Cleaned up file structure. Completed tutorial 1.5.
This commit is contained in:
18
Python/main.py
Normal file
18
Python/main.py
Normal 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)
|
||||
Reference in New Issue
Block a user