前提・実現したいこと
「文字列に含まれる単語と、あらかじめ指定した単語リスト中の単語が、完全一致するものを見つけたい」です。
前回の質問「Pythonで文字列の完全一致の判定に失敗する問題について」では、ハイフンの処理や部分一致の回避の仕方は分かったのですが、スペースも含めた(looks cool
)という文字列を引っ張ってこようとすると分割(スプリット)が使用できず、実現したい出力を一気に求める方法がわからず困っています。
#入力 text = "The T-shirt looks cool." words = ['T', 'shirt', 'cool', 'l', 'looks cool', 'T-shirt'] #出力 cool looks cool T-shirt
発生している問題・エラーメッセージ
['The', 'T-shirt', 'looks', 'cool'] cool T-shirt no splitter: T shirt cool l looks cool T-shirt
該当のソースコード
python
1text = "The T-shirt looks cool." 2words = ['T', 'shirt', 'cool', 'looks cool', 'T-shirt'] 3 4splitted = list(map(lambda x: x.strip(' .,!?'), text.split())) 5print(splitted) 6for word in words: 7 if word in splitted: 8 print(word) 9 10 11print('no splitter:') 12for word in words: 13 if word in text: 14 print(word)
補足情報(FW/ツールのバージョンなど)
python 3.7.4
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。