Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / lesson4_5

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • lesson4_5
  • 2.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    save project · 8ba8fab8
    BellCodeEditor committed 2 years ago
    8ba8fab8
2.py 148 Bytes
1 2 3 4 5 6 7 8 9 10
import turtle

pen = turtle.Pen()
a = 1
for i in range(300):
    pen.forword(a)
    pen.right(91)
    a += 1
pen.hideturtle()
turtle.done()