Guest User

Untitled

a guest
Feb 16th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. #RandomSpiralDamianRivera.py
  2. import turtle
  3. import random
  4.  
  5. t= turtle.Pen()
  6. window = turtle.Screen()
  7. window.bgcolor("black")
  8. colors=["red", "white", "blue" , "pink", "magenta", "yellow", "orange", "green"]
  9. def spiral ():
  10. x = random.randrange(-turtle.window_width()//2,
  11. turtle.window_width()//2)
  12. y = random.randrange(-turtle.window_height()//2,
  13. turtle.window_height()//2)
  14.  
  15. size = random.randint(10, 40)
  16. t.pencolor(random.choice((colors)))
  17. t.penup()
  18. t.setpos(x, y)
  19. t.pendown()
  20. for w in range (size):
  21. t.forward(w*4)
  22. t.left(91)
  23. for i in range (50):
  24. spiral()
Add Comment
Please, Sign In to add comment