10.4儲存資料
模組json 模組json讓你能夠將簡單的python資料結構轉儲到檔案中,並在程式再次執行時載入該檔案中的資料。
json.dump() 儲存資料,json.dump(要儲存的資料,用於儲存資料的檔案)
import json
"""匯出json模組"""
numbers = [2,3,5,7,11,13]
filename = 'number.json'
with open(filename,'w') as f_obj:
json.dump(numbers,f_obj)
最後在number.json檔案裡面得到了結果:
[2,3,5,7,11,13]
json.load() 讀取資料,json.load()將資料讀取到檔案中
import json
filename = 'numbers.json'
with open(filename) as f_obj:
numbers = json.load(f_obj)
print(numbers)
最後在number.json檔案裡面得到了結果:
[2,3,5,7,11,13]
學習Python第8天
物件是類的例項。換句話說,類主要定義物件的結構,然後我們以類為模板建立物件。類不但包含方法定義,而且還包含所有例項共享的資料。在 python 中定義私有變數只需要在變數名或函式名前加上 兩個下劃線,那麼這個函式或變數就會為私有的了。class derivedclassname baseclassn...
python學習筆記 第8天
繼續今天的python學習 昨天我們說到了多執行緒共享資料 全域性變數 那麼今天我們就緊接著來說一下多執行緒不共享資料的使用方式 import threading import time def test1 the number 0 for i in range 100 the number 1 t...
python入門學習(第8天)
物件 屬性 方法 物件是類的例項。換句話說,類主要定義物件的結構,然後我們以類為模板建立物件。類不但包含方法定義,而且還包含所有例項共享的資料。例子 class turtle python中的類名約定以大寫字母開頭 關於類的乙個簡單例子 屬性 color green weight 10 legs 4...