zoukankan      html  css  js  c++  java
  • 【网易官方】极客战记(codecombat)攻略-森林-似曾相识的味道deja-brew

    用字符串 (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.")
     
     
     
  • 相关阅读:
    Ajax 的 GET 和 POST 模式
    AJax中post与get请求注意事项
    代理模式 (Proxy)
    装饰模式 (Decoratory)
    抽象工厂模式( Abstract Factory )
    单例模式(Singleton)
    原型设计模式
    Intro.js的简介和用法
    mysql 分片
    数据分片(二)如何为数据分片
  • 原文地址:https://www.cnblogs.com/codecombat/p/12297890.html
Copyright © 2011-2022 走看看