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

bellcode / lesson3-5-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-5-2_DIY1
  • bug.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    auto save · 67515fc8
    BellCodeEditor committed 4 years ago
    67515fc8
bug.py 235 Bytes
1 2 3 4 5 6 7 8 9 10 11 12
import turtle

pen= turtle.Pen()

a=turtle.Screen()
size=a.textinput("提示","你想要多大的魔法阵呀?")
size=int(size)
pen.circle(size)
pen.circle(size,360,255)
pen.circle(size,460,250)
pen.circle(size,360,250)
turtle.done()