Advertisement
mixone

Turtle colormode Example

Oct 27th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. from turtle import Turtle, colormode
  2.  
  3. mixone = Turtle()
  4. colormode(255)
  5. for i in range(4):
  6.     mixone.fd(50)
  7.     mixone.rt(90)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement