私は次のように文字列のリストを持っている:「:」私はで文字列を分割して辞書を形成したいPythonの:リスト内の分割文字列とフォーム辞書
e = ['Website: Alabama Office of the Attorney General',
'Toll Free: 1-800-392-5658',
'Website: State Banking Department',
'Toll Free: 1-866-465-2279',
'Website: Department of Insurance',
'Phone Number: 334-241-4141',
'Website: Securities Commission',
'Phone Number: 334-242-2984',
'Website: Public Service Commission',
'Toll Free: 1-800-392-8050']
との各二つの要素の辞書を形成しますリストは次のようになります:
e = [{'Website': 'Alabama Office of the Attorney General',
'Toll Free': '1-800-392-5658'},
{'Website': 'State Banking Department',
'Toll Free': '1-866-465-2279'},
{'Website': 'Department of Insurance',
'Phone Number': '334-241-4141'},
{'Website': 'Securities Commission',
'Phone Number': 334-242-2984'},
{'Website': 'Public Service Commission',
'Toll Free': '1-800-392-8050'}]
いつものようにあなたの助けをありがとう。
あなたはそれがリストになりたいのはなぜ? –
問題を解決するためにこれまでに試したことをお見せしてください。どこで立ち往生しましたか? –
[so]はコード作成サービスではありませんので、[ask]を確認して、あなたが試したことをお見せください。 – TemporalWolf