我想從文本文件創建一個字典。Python - 從文件中創建數組的字典
的文本文件:
***Comment line - not to be read by program***
jdoe | doe | John Doe | 0001 | True
jsmith | smith | John Smith | 0002 | False
字典將最好的樣子:
accounts = {
'jdoe' : ['doe','John Doe', '0001', True],
'jsmith' : ['smith', 'John Smith', '0002', False]
}
將需要此代碼是什麼工作?
這將是一個簡單得多的[JSON](https://docs.python.org/3/library/json.html) – ti7
歡迎StackOverflow上。請閱讀並遵守幫助文檔中的發佈準則。 [在主題](http://stackoverflow.com/help/on-topic)和[如何提問](http://stackoverflow.com/help/how-to-ask)適用於此處。 StackOverflow不是一個編碼或教程服務。 – Prune
@ ti7爲什麼json會更簡單?許多程序讀寫csv的。我們對這些數據的來源一無所知,修改這些數據源可能非常困難。 json是一個序列化協議,不是邪教。 – tdelaney