循环真是救命恩人!
简介:
你只需要 一个 while true循环 加上 4 条语句 就可以通关!
仔细检查你的缩进!
默认代码
# 在 while true 里的代码会永远重复!
while True:
# 右走
hero.moveRight()
# 向上走
# 左走
# 向下走
概览
你可以只用一个 while true 循环 以及 4 行命令 就可以存活下来!
确保你加上的代码放在 while true 循环 的 里面。好好检查一下缩进!
循环又循环 解法
# 在 while true 里的代码会永远重复!
while True:
# 右走
hero.moveRight()
# 向上走
hero.moveUp()
# 左走
hero.moveLeft()
# 向下走
hero.moveDown()
本攻略发于极客战记官方教学栏目,原文地址为: https://codecombat.163.com/news/jikezhanji-xuhuanyouxuhuan
极客战记——学编程,用玩的!
来源:oschina
链接:https://my.oschina.net/u/4441837/blog/3161094