关卡连接:
https://codecombat.163.com/play/level/haunted-kithmaze
一个为困住冒险者而修建的迷宫。
简介:
一定要检查缩进!
在这关你只需 一个 while true 循环 加上 四行 代码。
默认代码
# 循环是处理重复事情的最好方法。
while True:
# 在这里添加需要重复运行的命令。
hero.moveRight()
hero.moveRight()
概览
while true 循环能让你一遍遍重复相同的代码. 使用循环的话,只用四条语句便可通关。
提示: 走廊需要 两次向右移动, 两次向上移动。 在这里, 你可以让 while true 循环 重复剩下的步骤。
确保你的移动命令 在循环里 , 它们才能重复执行!
闹鬼的迷宫 解法
# 循环是处理重复事情的最好方法。·
while True:
# 在这里添加需要重复运行的命令。
hero.moveRight()
hero.moveRight()
hero.moveUp()
hero.moveUp()