Commit 5992e857 by BellCodeEditor

save project

parent 211cc6ce
Showing with 70 additions and 1 deletions
bros=["刘备","关羽","张飞"]
bros[0]=["关羽"]
bros[1]=["刘备"]
print(bros)
b=["恶来","关羽","虎痴","张郃","张辽","奉先"]
b.pop(1)
print(b)
a=["华雄"]
c=["颜良","文丑"]
a.extend(c)
print(a)
b=["袁术","公孙瓒","刘备","关羽","张飞","曹操"]
a=["吕布"]
a.extend(b[2:5])
print(a)
......@@ -7,7 +7,7 @@ import turtle
pen = turtle.Pen()
# 请创造师在下面接着创作
distance=1
for i in range(300):
for i in range(3000):
pen.forward(distance)
distance+=1
pen.right(121)
......
a=["吕布"]
b=["袁术","公孙瓒","关羽","张飞","刘备","曹操"]
a.append(b[2:5])
print(a)
\ No newline at end of file
import turtle
import turtle
pen = turtle.Pen()
pen.speed(000000000000000000000000000000000000000000000000000000)
a=1
colors=["red","bule","green","yollow","black","pink","purple","orange"]
for i in range(3000):
pen.forward(i)
pen.right(91)
a+=1
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