Skip to content

Commit fdf6b3a

Browse files
committed
Create mypolygon.py
1 parent fa5a76d commit fdf6b3a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

mypolygon.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import turtle
2+
bob = turtle.Turtle()
3+
print(bob)
4+
for i in range(4):
5+
bob.fd(100)
6+
bob.lt(90)
7+
turtle.mainloop()

0 commit comments

Comments
 (0)