前提・実現したいこと
以下のようなリストを入力した時に、各要素内のカンマ(, )で区切ってその後新しい要素として、配列内に保有しようとしています。
例)
["hello, world.", "good morning."]という入力は、hello, world.
のカンマで区切って"hello"と"world."に分けます。
その後、["hello, world.", "good morning."]の配列内では、good morning.
と同階層の値として、["hello", "world.", "good morning."]としたいです。
#入力 sample = [["hello, world.", "good morning."], ["Nice to meet you."], ["Good work, John."]] #出力 [["hello", "world.", "good morning."], ["Nice to meet you."], ["Good work", "John."]]
発生している問題・エラーメッセージ
現在のコードでは['hello', 'world.']
とリストになってしまい、good morning.
と同階層の値として、["hello", "world.", "good morning."]とできていません。
[[['hello', 'world.'], ['good morning.']], [['Nice to meet you.']], [['Good work', 'John.']]]
該当のソースコード
リスト内包記法は、「Python, splitでカンマ区切り文字列を分割、空白を削除しリスト化」という記事を参考にしました。
python
1sample = [["hello, world.", "good morning."], 2 ["Nice to meet you."], 3 ["Good work, John."] 4 ] 5 6for i in range (len(sample)): 7 for j in range (len(sample[i])): 8 text = sample[i][j] 9 #print(text) 10 #print([x.strip() for x in text.split(',') if not x.strip() == '']) 11 sample[i][j] = [x.strip() for x in text.split(',') if not x.strip() == ''] 12sample
試したこと
new_sample = []という値を作って、append()という方法も考えましたが、カンマを削除してその前後を分割する部分を、内包記法で行っている部分をどのように修正すればいいかわからないです。
出力
[['hello', 'world.'], ['good morning.'], ['Nice to meet you.'], ['Good work', 'John.']]
python
1new_sample = [] 2for i in range (len(sample)): 3 for j in range (len(sample[i])): 4 text = sample[i][j] 5 #print(text) 6 #print([x.strip() for x in text.split(',') if not x.strip() == '']) 7 sample[i][j] = [x.strip() for x in text.split(',') if not x.strip() == ''] 8 new_sample.append([x.strip() for x in text.split(',') if not x.strip() == '']) 9new_sample
補足情報(FW/ツールのバージョンなど)
Python 3.7.0
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。