Advertisement
MUstar

IoT Python3 0814 - Turtle_forward

Aug 15th, 2017
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. import turtle as t
  2. angle = 89
  3. t.bgcolor("black")
  4. t.color("yellow")
  5. t.speed(0)
  6. for x in range(200):
  7.     t.forward(x)
  8.     t.left(angle)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement