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

bellcode / lesson3-1-1_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
Commit 5ef88148 authored 3 years ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

save project

parent 6a2a1bc3
Hide whitespace changes
Inline Side-by-side
Showing with 16 additions and 3 deletions
  • 1.py
1.py
View file @ 5ef88148
# import turtle
import turtle
# pen=turtle.Pen()
# pen.write("杀马特团长,\n我在沈阳大街等你\n有你好果汁吃。",font=("time","20","normal"))
# turtle.done()
\ No newline at end of file
# turtle.done()
p=turtle.Turtle()
p.pensize(5)
p.pencolor("red")
p.fillcolor("red")
p.begin_fill()
p.left(45)
p.forward(100)
p.circle(50,180)
p.right(90)
p.circle(50,180)
p.forward(100)
p.end_fill()
turtle.done()
\ No newline at end of file
This diff is collapsed. Click to expand it.
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment