Advertisement
adham-ahmed

Hexagon script python turtle

Apr 15th, 2022
884
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import turtle
  2. t = turtle.Turtle()
  3. t.pensize(2)
  4. for i in range(360):
  5.     t.forward(50)
  6.     t.down()
  7.     t.right(55)
  8.     t.left(100)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement