码迷,mamicode.com
首页 > 其他好文 > 详细

【网易官方】极客战记(codecombat)攻略-森林-似曾相识的味道deja-brew

时间:2020-02-12 10:45:44      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:其他   mda   eve   连接   ons   zed   extc   link   The   

技术图片

用字符串 (string) 唱歌!

简介

技术图片

你可以连接(组合)字符串与其他字符串或数字:

numberOfPotions = 5
hero.say("I have " + numberOfPotions + " potions.")

使用字符串连接与您的朋友一起唱歌!

默认代码

# 你可以把字符串连起来,或者把数字连接到字符串中。
# 一起唱歌,使用字符串连接:
# X potions of health on the wall!
# X potions of health!
# Take Y down, pass it around!
# X-Y potions of health on the wall.
potionsOnTheWall = 10
numToTakeDown = 1
while True:
    hero.say(potionsOnTheWall + " potions of health on the wall!")
    # 唱出下一句:

 

    # 唱出下一句:

 

    potionsOnTheWall -= numToTakeDown
    # 唱出最后一句:

概览

你可以 连接 (concatenate,combine) 几个字符串或者数字:

numberOfPotions = 5
hero.say("I have " + numberOfPotions + " potions.")

使用字符串连接方法和你的朋友大声唱!

英文歌词在下面:

potionsOnTheWall + " potions of health on the wall!"
potionsOnTheWall + " potions of health!"
"Take " + numToTakeDown + " down, pass it around!"
potionsOnTheWall + " potions of health on the wall."

似曾相识的味道 解法

# 你可以把字符串连起来,或者把数字连接到字符串中。
# 一起唱歌,使用字符串连接:
# X potions of health on the wall!
# X potions of health!
# Take Y down, pass it around!
# X-Y potions of health on the wall.
potionsOnTheWall = 10
numToTakeDown = 1
while True:
    hero.say(potionsOnTheWall + " potions of health on the wall!")
    # 唱出下一句:
    hero.say(potionsOnTheWall + " potions of health!")
    # 唱出下一句:
    hero.say("Take " + numToTakeDown + " down, pass it around!")
    potionsOnTheWall -= numToTakeDown
    # 唱出最后一句:
    hero.say(potionsOnTheWall + " potions of health on the wall.")
 
 
 

【网易官方】极客战记(codecombat)攻略-森林-似曾相识的味道deja-brew

标签:其他   mda   eve   连接   ons   zed   extc   link   The   

原文地址:https://www.cnblogs.com/codecombat/p/12297890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!