Advertisement
runaman

Untitled

Apr 28th, 2017
62
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
  2.  
  3. for step in ['red','blue','green','yellow']:
  4.   turtle.color(step)
  5.   turtle.forward(50)
  6.   turtle.left(90)
  7.  
  8. turtle.done()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement