Commit f4b882fa by BellCodeEditor

save project

parent 1bad0edb
Showing with 24 additions and 19 deletions
# 悟空想海龟作图画出弹簧隧道,但是出现了bug,运行不了,请你帮助他,修改bug~ import turtle
import turtle turtle.speed(0.0000000000000000002)
turtle.hideturtle()
pen=turtle.Pen() turtle.bgcolor('black')
screen=turtle.Screen()
pen.speed()
pen.hideturtle()
screen.bgcolor('black')
i=0 i=0
while i<135: while i:
pen.pencolor('pink') turtle.pencolor('pink')
pen.penup() turtle.penup()
pen.goto(0,0) turtle.goto(0,0)
pen.forward(200) turtle.forward(200)
pen.pendown() turtle.pendown()
pen.circle(100) turtle.circle(100)
pen.left(2) turtle.left(2)
i+=1 i+=1
while i<155:
turtle.pencolor('green')
turtle.penup()
turtle.goto(0,0)
turtle.forward(200)
turtle.pendown()
turtle.circle(100)
turtle.left(2)
turtle.done() turtle.done()
\ No newline at end of file
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
area = ['盘丝洞','白骨洞','大雁塔'] area = ['盘丝洞','白骨洞','大雁塔']
monster = {'盘丝洞':'蜘蛛精','白骨洞': '白骨精','大雁塔':'花妖'} monster = {'盘丝洞':'蜘蛛精','白骨洞': '白骨精','大雁塔':'花妖'}
# 打印出大雁塔 # 打印出大雁塔
print(area[3]) print(area[2])
# 向字典中添加 '地府':'僵尸' # 向字典中添加 '地府':'僵尸'
monster.append('地府','僵尸') monster.地府:['僵尸']
print(monster) print(monster)
\ 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