我在將文件內容轉換爲詞典列表時遇到麻煩,您能否提供建議?python:讀取文件並將其分割成詞典列表
File content:
host1.example.com#192.168.0.1#web server
host2.example.com#192.168.0.5#dns server
host3.example.com#192.168.0.7#web server
host4.example.com#192.168.0.9#application server
host5.example.com#192.168.0.10#database server
該文件夾中有多個文件格式相同。最後,我想收到以下格式的字典列表:
[ {'dns': 'host1.example.com', 'ip': '192.168.0.1', 'description': 'web_server'},
{'dns': 'host2.example.com', 'ip': '192.168.0.5', 'description': 'dns server'},
{'dns': 'host3.example.com', 'ip': '192.168.0.7', 'description': 'web server'},
{'dns': 'host4.example.com', 'ip': '192.168.0.9', 'description': 'application server'},
{'dns': 'host5.example.com', 'ip': '192.168.0.10', 'description': 'database server'} ]
提前致謝!
+1了詳細的解釋。 –
其實,你的答案就是我會親自做的,但不幸的是,列表比賽混淆了大多數人。 +1給你。 –