次のようなリストの要素を抽出したいと思っています。
適切な方法はありますでしょうか?
[{'token': '北海道', 'start_offset': 0, 'end_offset': 3, 'type': 'word', 'position': 0, 'baseForm': None, 'bytes': '[e5 8c 97 e6 b5 b7 e9 81 93]', 'inflectionForm': None, 'inflectionForm (en)': None, 'inflectionType': None, 'inflectionType (en)': None, 'partOfSpeech': '名詞-固有名詞-地 域-一般', 'partOfSpeech (en)': 'noun-proper-place-misc', 'positionLength': 1, 'pronunciation': 'ホッカイドー', 'pronunciation (en)': 'hokkaido', 'reading': 'ホッカイドウ', 'reading (en)': 'hokkaidō', 'termFrequency': 1}]
抽出に当たり、個人的には次のように記述してみましたが、ダメでした。
python
1list = 上記のリスト 2element = [n for n in list if n % 1 == 0]
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/10 05:47