啊哈星球第6章第12关(总第72关)

2019年9月17日 | 分类: 【攻略】
def back():
	turn("left")
	turn("left")
while(not isLightOn()):
	if(not hasBlocked('right')):
		turn("right")
		move()
	elif(not hasBlocked('forward')):
		move()
	elif(not hasBlocked('left')):
		turn("left")
		move()
	else:
		back()
toggle()