Commit 012c67ed by BellCodeEditor

auto save

parent d1d367c3
Showing with 8 additions and 6 deletions
# 悟空想海龟作图画出弹簧隧道,但是出现了bug,运行不了,请你帮助他,修改bug~ # 悟空想海龟作图画出弹簧隧道,但是出现了bug,运行不了,请你帮助他,修改bug~
import turtle #import turtle
pen=turtle.Pen() pen=turtle.Pen()
screen=turtle.Screen() screen=turtle.Screen()
...@@ -11,7 +11,7 @@ i=0 ...@@ -11,7 +11,7 @@ i=0
while i<135: while i<135:
pen.pencolor('pink') pen.pencolor('pink')
pen.penup() pen.penup()
pen.goto(0,0) pen.goto(-200,0)
pen.forward(200) pen.forward(200)
pen.pendown() pen.pendown()
pen.circle(100) pen.circle(100)
......
...@@ -2,7 +2,10 @@ ...@@ -2,7 +2,10 @@
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