Commit d72840d5 by BellCodeEditor

auto save

parent 0f317e8e
Showing with 13 additions and 3 deletions
# import turtle as t
# t.speed(0)
# for i in range(300):
# t.forward(i)
# t.right(91)
# t.done()
import turtle as t import turtle as t
t.speed(0) t.speed(100)
color=['red','blue','yellow','green']
for i in range(300): for i in range(300):
t.forward(i) t.pencolor('color[i%4]')
t.right(91) t.forward(i)
t.right(91)
t.done() t.done()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment