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

Administrator / lesson9_3

  • 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
  • lesson9_3
  • lcy.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    auto save · 05c05dd9
    BellCodeEditor committed 4 years ago
    05c05dd9
lcy.py 183 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import turtle
a=turtle.Pen()
a.fillcolor("red")
a.begin_fill()
for i in range(5):
    a.left(144)
    a.forward(200)
a.end_fill()
a.hideturtle()
turtle.done()