Commit 1e9c2e09 by BellCodeEditor

save project

parent 654bc3ba
Showing with 31 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
p=turtle.Pen()
p.color("red")
screen=turtle.Screen()
screen.bgcolor("yellow")
p.hideturtle()
p.pensize(20)
p.left(45)
p.forward(90)
p.circle(45,180)
p.right(90)
p.circle(45,180)
p.forward(90)
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