空のstringを代入するには
empty stringを変数に代入したいですが、
やや変な形で出力されてしまいます。
以下のような条件式に、該当しない実装をしているものと思われます。
Initialize a variable hodgepodge to an empty string.
↓↓↓自分が書いたコード
# Define gibberish def gibberish(*args): """Concatenate strings in *args together.""" # Initialize an empty string: hodgepodge(おそらく問題の箇所) hodgepodge = [] # Concatenate the strings in args for word in args: hodgepodge += word # Return hodgepodge return hodgepodge # Call gibberish() with one string: one_word one_word = gibberish("luke") # Call gibberish() with five strings: many_words many_words = gibberish("luke", "leia", "han", "obi", "darth") # Print one_word and many_words print(one_word) print(many_words)
↓↓↓出力画面
['l', 'u', 'k', 'e'] ['l', 'u', 'k', 'e', 'l', 'e', 'i', 'a', 'h', 'a', 'n', 'o', 'b', 'i', 'd', 'a', 'r', 't', 'h']
回答1件
あなたの回答
tips
プレビュー