【codecombat】 试玩全攻略 第六关 cell commentary

时间:2021-12-12 01:37:58

 

  第六关 cell commentary

  这一关其实可以叫你的英雄会说话,是的,我们的英雄在前五关学会了走路,现在开始说话了。

hero.say(“”)命令,括号里写英雄说话的内容,写什么,我们的英雄说什么。既然这一关的名字叫*注释,

这么难翻译的名字,那么肯定跟注释有关了,Python中注释用的是#号。仔细看代码注释里有password,把

它写进我们的hero.say("")里面就好了。就是这样。。。

【codecombat】 试玩全攻略 第六关 cell commentary

代码如下:

1 hero.say("What's the password?")
2 # Use the "say()" function to say the password.
3 # The password is: "Achoo"
4 hero.moveUp()
5 hero.say("Achoo")
6 hero.moveUp()