We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43ec458 commit ba82132Copy full SHA for ba82132
main.py
@@ -13,6 +13,13 @@ def main():
13
""" Main program function, Draws silhouette"""
14
charles = turtle.Turtle()
15
screen = charles.screen
16
+ charles.penup()
17
+ charles.goto(-screen.window_width() / 2, -screen.window_height() / 2)
18
+ charles.setheading(0)
19
+ charles.pendown()
20
+ charles.speed(100)
21
+
22
+ turtle.done()
23
24
25
if __name__ == "__main__":
0 commit comments