Commit f8bf2305 by BellCodeEditor

auto save

parent 340a6fc4
import t()
pen._pensize(5)
pen.speed
\ No newline at end of file
import turtle
screen=turtle.Screen()
screen.bgcolor("pink")
a=20
b=['red','yellow','blue']
for i in range(3):
turtle.fillcolor(b[i%3])
turtle.begin_fill()
for i in range(4):
turtle.forward(20)
turtle.left(90)
turtle.end_fill()
turtle.goto(a,0)
a+=20
turtle.hideturtle()
turtle.done()
\ No newline at end of file
import.turtle import turtle
pen=turtle.Pen() list=["red","blue","pink","yellow","orange","green"]
pen.pencoloer("red") pen = turtle.Pen()
pen.circle(50,180) a=10
pen.done() for i in range(6):
pen.pencolor(list[i%6])
pen.penup()
pen.goto(0,-a)
pen.pendown()
pen.circle(a)
a+=10
turtle.done()
\ No newline at end of file
++ "b/\347\232\204\345\237\216\345\270\202\345\244\247V\345\217\221\347\232\204\346\230\257\346\210\221/\344\273\226\342\200\262\346\236\234\347\204\266.py/bhjhj.py"
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