Turtle graphics

fkfknfkn tututttPython 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:01:18) [MSC v.1900 32 bit (Intel)] on win32
Type “copyright”, “credits” or “license()” for more information.
>>> import turtle
>>> t=turtle.Turtle()
>>> wn=turtle.Screen()
>>> wn.bgcolor(“red”)
>>> t.pencolor(“right”)
Traceback (most recent call last):
File “<pyshell#4>”, line 1, in <module>
t.pencolor(“right”)
File “C:\Users\Augustin\AppData\Local\Programs\Python\Python35-32\lib\turtle.py”, line 2252, in pencolor
color = self._colorstr(args)
File “C:\Users\Augustin\AppData\Local\Programs\Python\Python35-32\lib\turtle.py”, line 2696, in _colorstr
return self.screen._colorstr(args)
File “C:\Users\Augustin\AppData\Local\Programs\Python\Python35-32\lib\turtle.py”, line 1158, in _colorstr
raise TurtleGraphicsError(“bad color string: %s” % str(color))
turtle.TurtleGraphicsError: bad color string: right
>>> t.pencolor(“white”)
>>> for i in range(100)
SyntaxError: invalid syntax
>>> for i in range (100):
t.right(0)
t.right(1)
t.right(45)
t.forward(0)
t.forward(1)
t.forward(150)
t.backward(0)
t.backward(1)
t.backward(150)
print (i)

0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
>>>