.upper()の使い方
.upper()の指定が正しくできていないために、エラー文言が発生してしまっています。
↓↓↓自分が書いたコード
# Define shout_echo def shout_echo(word1, echo = 1, intense = False): """Concatenate echo copies of word1 and three exclamation marks at the end of the string.""" # Concatenate echo copies of word1 using *: echo_word echo_word = word1 * echo # Make echo_word uppercase if intense is True if intense is True: # Make uppercase and concatenate '!!!': echo_word_new echo_word_new = .upper(echo_word) + '!!!' else: # Concatenate '!!!' to echo_word: echo_word_new echo_word_new = echo_word + '!!!' # Return echo_word_new return echo_word_new # Call shout_echo() with "Hey", echo=5 and intense=True: with_big_echo with_big_echo = shout_echo("Hey", echo = 5, intense=True) # Call shout_echo() with "Hey" and intense=True: big_no_echo big_no_echo = shout_echo("Hey", intense=True) # Print values print(with_big_echo) print(big_no_echo)
↓↓↓エラー文言
File "<stdin>", line 12 echo_word_new = .upper(echo_word) + '!!!' ^ SyntaxError: invalid syntax
なお、以下のような条件があります。
.upper()の使い方が間違っていますか、、、?
In the body of the if statement, make the string object echo_word upper case by applying the method .upper() on it.
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/05 12:36