Advertisement
pacho_the_python

Untitled

Nov 20th, 2021
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. from turtle import *
  2.  
  3. speed(20)
  4. color("black")
  5. pensize(1)
  6. for j in range(72):
  7.     left(5)
  8.     for i in range(6):
  9.         forward(150)
  10.         left(360 / 6)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement