pythonwrite连续写入_python文件写入write()的操作
本文實(shí)例為大家分享了python文件寫入write()的操作的具體代碼,供大家參考,具體內(nèi)容如下
filename = 'pragramming.txt'
with open(filename,'w') as fileobject: #使用‘w'來提醒python用寫入的方式打開
fileobject.write('i love your name!'
'\ni love your cloth!'
'\ni love your shoes!'
'\ni love your hair!')
with open(filename,'a') as fileobject: #使用‘a(chǎn)'來提醒python用附加模式的方式打開
fileobject.write('\ni an superman.')
代碼中的filename如果沒有這個文件,python會自己新建一個。
json文件的寫入和讀取:
import json
filename = 'number.json'
def write_json():
numbers = [1,2,3,4,5,6,7,8,9,10]
with open(filename,'w') as fp:
json.dump(numbers,fp)#寫入json文件
write_json()
def read_json():
with open(filename) as pf:
numbers = json.load(pf)#讀取json文件
print(numbers)
read_json()
訓(xùn)練:
import json
def remember_me():
active = true
while active:
for i in range(5):
if i < 4:
username = input('please enter your name:')
filename = 'name.json'
with open(filename,'w') as fp:#以w的方式打開寫入時會覆蓋原有記錄,而以a打開不會
json.dump(username,fp)
print('hello! '+username.title())
else:
active = false
remember_me()
以上所述是小編給大家介紹的python文件寫入write()的操作詳解整合,希望對大家有所幫助
希望與廣大網(wǎng)友互動??
點(diǎn)此進(jìn)行留言吧!
創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎勵來咯,堅(jiān)持創(chuàng)作打卡瓜分現(xiàn)金大獎總結(jié)
以上是生活随笔為你收集整理的pythonwrite连续写入_python文件写入write()的操作的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【SpringBoot 2】(三)Spr
- 下一篇: python人脸识别源码_Python