Commit e6c867fb by BellCodeEditor

auto save

parent 05e7d622
Showing with 25 additions and 0 deletions
import turtle
turtle.screensize(800,600,"yellow")
turtle.color("red","green")
turtle.pensize(5)
turtle.begin_fill()
for i in range(4):
turtle.forward(100)
turtle.right(90)
turtle.end_fill()
turtle.left(90)
turtle.goto(100,100)
# turtle.home()
turtle.reset()
turtle.done()
\ No newline at end of file
import turtle
turtle.pensize(10)
turtle.color("red","blue")
turtle.left(36)
turtle.begin_fill()
turtle.circle(50,steps=5)
turtle.end_fill()
turtle.hideturtle()
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