這篇文章主要講解了“python的文件操作和Pick存儲(chǔ)模塊實(shí)例”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“python的文件操作和Pick存儲(chǔ)模塊實(shí)例”吧!
創(chuàng)新互聯(lián)建站主要從事成都網(wǎng)站制作、做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)巢湖,十多年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220
文件操作
輸入:
#!/usr/bin/python
# Filename: using_file.py
poem = '''\Programming is funWhen the work is doneif you wanna make your work also fun: use Python!'''
f = open('poem.txt', 'w')
# open for 'w'riting
f.write(poem)
# write text to file
f.close()
# close the file
f = open('poem.txt')
# if no mode is specified, 'r'ead mode is assumedby default
while True:
line = f.readline()
if len(line) == 0: # Zero length indicates EOF
break
print(line, end='')
f.close()
# close the file
輸出:
$ python using_file.py
Programming is fun
When the work is done
if you wanna make your work also fun:
use Python!
解釋:
本例中,設(shè)計(jì)到了文件的讀寫操作。
首先定義了一個(gè)字符串,打開一個(gè)文件,將數(shù)據(jù)存入,保存。
然后打開這個(gè)剛才保存的文件,按行輸出內(nèi)容。
Pickle模塊
輸入:
#!/usr/bin/python
# Filename: pickling.py
import pickle
# the name of the file where we will store the objectshoplistfile = 'shoplist.data'
# the list of things to buy
shoplist = ['apple', 'mango', 'carrot']
# Write to the file
f = open(shoplistfile, 'wb')
pickle.dump(shoplist, f)
# dump the object to a file
f.close()
del shoplist
# destroy the shoplist variable
# Read back from the storage
輸出:
$ python pickling.py
['apple', 'mango', 'carrot']
解釋:
Python提供了一個(gè)名為 pickle的標(biāo)準(zhǔn)模塊,您可以使用它存儲(chǔ)任何Python
文件中的對象,然后再將其取回。 這稱為持久存儲(chǔ)對象。
感謝各位的閱讀,以上就是“python的文件操作和Pick存儲(chǔ)模塊實(shí)例”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對python的文件操作和Pick存儲(chǔ)模塊實(shí)例這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!