We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 009d12b commit 4f012faCopy full SHA for 4f012fa
python_turtol_graphics/__init__.py
python_turtol_graphics/mindstroms.py
@@ -0,0 +1,22 @@
1
+import turtle
2
+
3
+def drw_square():
4
+ window = turtle.Screen()
5
+ window.bgcolor("red")
6
7
+ brad = turtle.Turtle()
8
+ brad.shape("turtle")
9
+ brad.color("yellow")
10
+ brad.speed(2)
11
12
+ brad.forward(100)
13
+ brad.right(90)
14
15
16
17
18
19
20
+ window.exitonclick()
21
22
+drw_square()
0 commit comments