Commit c886a62c by BellCodeEditor

auto save

parent a50ceeec
Showing with 33 additions and 0 deletions
import turtle
p=turtle.Pen()
p.color("red")
p.pensize(20)
p.left(45)
p.forward(90)
p.circle(45,180)
p.right(90)
p.circle(45,180)
p.forward(90)
turtle.done()
\ No newline at end of file
import turtle
len=int(input("直径"))
p=turtle.Pen()
p.color("red")
screen=turtle.Screen()
screen.bgcolor("yellow")
p.hideturtle()
p.pensize(5)
p.left(45)
p.forward(2*len)
p.circle(len,180)
p.right(90)
p.circle(len,180)
p.forward(2*len)
p.left(90)
p.penup()
p.goto(-100,0)
p.write("傻逼\fuck",font=("Times",10,"normal"))
turtle.done()
\ No newline at end of file
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