python中如何把資料存放區到本地

來源:互聯網
上載者:User

標籤:python   資料存放區   pickle模組   

有很多時候,我們會在python的運行過程中得到一些重要的變數,比如一個資料量很龐大的dict。而且,後面的某些程式也會用到這個dict,那麼我們就最好把它儲存到本地來,然後下次調用的時候,先讀取本地的檔案,匯入到字典類型中,調用即可。這樣就免去了重新學習這個字典的過程。那麼在python中如何把資料存放區到本地呢?

我們用到的是python中的pickle模組。
如下:

import pickledata1 = {‘a‘: [1, 2.0, 3, 4+6j],         ‘b‘: (‘string‘, u‘Unicode string‘),         ‘c‘: None}selfref_list = [1, 2, 3]selfref_list.append(selfref_list)output = open(‘data.pkl‘, ‘wb‘)# Pickle dictionary using protocol 0.pickle.dump(data1, output)# Pickle the list using the highest protocol available.pickle.dump(selfref_list, output, -1)output.close()

總結:使用pickle.dump把程式中的變數儲存到本地檔案,然後用pickle.load從本地檔案中匯入資料到程式中的變數中,實現調用。

ps:pickle居然是泡菜的意思,dump是傾倒的意思,這樣子記比較容易一些。

其實最主要的還是要記住pickle模組的用法啦~

參考連結:
http://www.cnblogs.com/pzxbc/archive/2012/03/18/2404715.html

python中如何把資料存放區到本地

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.