добавить 20 characters
Я исправил. но не работает.
Вы можете отправить свой код еще раз?
# Ты можешь объединять строки, включая в них числа.
# Подпевай, используя объединение строк:
# 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 wall.")
type or paste code here
добавить слово the 20 chars
Так у меня же раздельно написано. Я исправил.
Вы можете отправить свой код еще раз?
# Ты можешь объединять строки, включая в них числа.
# Подпевай, используя объединение строк:
# 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 wall.")
type or paste code here
между этими двумя словами добавить the
Все! Работает! Спасибо! Проблемы с английским. Этот уровень простой, но отнял много времени.