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

bellcode / lesson3-2_DIY1

  • 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
  • lesson3-2_DIY1
  • diy.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    save project · 33786002
    BellCodeEditor committed 2 years ago
    33786002
diy.py 205 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13
import turtle
bi = turtle.Pen()
bi.pensize(5)
bi.pencolor("red")
#bi.fillcolor("red")
bi.lt(45)
bi.fd(100)
bi.circle(50,180)
bi.rt(90)
bi.circle(50,180)
bi.fd(100)
bi.hideturtle()
turtle.done()