python turtle drawing……

>>> import turtle as t
>>> for i in range(100):
...     t.color("red")
...     t.fd(i)
...     t.right(59)
...     t.dot(5)