python 从入门到实践 第十章试一试
Posted upuser
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 从入门到实践 第十章试一试相关的知识,希望对你有一定的参考价值。
‘‘‘这是读取和写入文件的课后题‘‘‘
file_ptch = ‘learning_python‘#定义一个变量为文件名
with open(file_ptch) as file_object:#用with 让python 自动完成文件的关闭,用OPEN方法打开一个文件并把内容传给file_object
python = file_object.readlines()#用readlines()把文件写入一个字典中
for i in python:
i = i.replace(‘alex‘,‘crys‘)#替换字符
i = i.replace(‘python‘,‘C‘)
print(i.strip())
filename = ‘mytext.txt‘
with open(filename,‘w‘) as file1_object:#第二个实惨为模式。‘r‘,‘w‘,‘a‘,‘r+‘ 分别代表读、写、追加、读写、模式
mytxt = file1_object.write(str(12312344) + ‘ ‘)
mytxt = file1_object.write(‘I Love python ! ‘)
with open(filename,‘a‘) as file3_object:#追加写入模式
mytxt1 = file3_object.write(‘I love c# ‘)
mytxt1 = file3_object.write(‘I love .net core ‘)
print(mytxt1)
print(mytxt1)
print(mytxt)
以上是关于python 从入门到实践 第十章试一试的主要内容,如果未能解决你的问题,请参考以下文章