Created
June 7, 2015 19:18
-
-
Save KaueMaia/9ff72b5795cf875c2d21 to your computer and use it in GitHub Desktop.
Brincando com Turtle do Python...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__author__ = 'kaue' | |
import turtle,time | |
colors = ['red', 'purple', 'blue', 'green', 'yellow', 'orange', 'pink'] | |
t1=turtle.Pen() | |
turtle.bgcolor('black') | |
t1.speed(0) | |
for x in range(1000): | |
t1.pencolor(colors[x%7]) | |
if x%2==0: | |
t1.forward(x) | |
else: | |
t1.backward((x-1)) | |
t1.left(52) | |
time.sleep(30) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment