Browse Source

2. Versuch, kurze Bewegung erreicht.

Hans Hildebrandt 7 years ago
parent
commit
3642a1a56b
1 changed files with 18 additions and 0 deletions
  1. 18 0
      turtle-me.py

+ 18 - 0
turtle-me.py

1
+#Zeichnen eines Autos mit turtle
2
+
3
+import turtle as t 
4
+
5
+for i in range (1):
6
+	t.forward(10)
7
+	t.left(90)
8
+	t.right(49)
9
+	t.forward(219)
10
+	t.right(90)
11
+	t.left(88)
12
+	t.forward(69)
13
+	t.right(99)
14
+	t.forward(90)
15
+	
16
+t.speed(4)
17
+t.exitonclick()
18
+