Commit 020c79e6 by BellCodeEditor

auto save

parent 925e373a
Showing with 24 additions and 0 deletions
i =0
j =0
for i in range(10):
for j in range(10):
print(i,"*",j,"=",i*j)
\ No newline at end of file
import turtle #导入画图工具包
screen = turtle.Screen()
screen.bgcolor("sky blue")
pen = turtle.Pen()
pen.down()
colors = ["red","pink","orange","green"]
for i in range(5,300):
pen.forward(i)
pen.right(91)
pen.color(colors[i%4])
pen.up()
pen.hideturtle()
turtle.clone()
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