Commit 127504df by BellCodeEditor

save project

parent a69dd454
Showing with 18 additions and 4 deletions
b = ["榴弹","关门","飞机"]
print(b)
b[0]="关门"
print(b)
b[1]="榴弹"
print(b)
\ No newline at end of file
b = ["榴弹","关门","飞机"]
print(b)
b[0]="关门"
print(b)
b[1]="榴弹"
print(b)
\ No newline at end of file
from turtle import*
speed(0)
bgcolor("black")
colors = ["blue","green","yellow","red"]
for i in range(1,300):
colors = ["blue","red","yellow","green"]
for i in range(1,30000):
pencolor(colors[i%4])
fd(i)
lt(91)
i+=2
i+=100
hideturtle()
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