首页 > 编程语言 > 详细

python 从入门到实践 第十章试一试

时间:2020-07-02 00:17:53      阅读:91      评论:0      收藏:0      [点我收藏+]
‘‘‘这是读取和写入文件的课后题‘‘‘
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) + ‘\n‘)
mytxt = file1_object.write(‘I Love python !\n‘)

with open(filename,‘a‘) as file3_object:#追加写入模式
mytxt1 = file3_object.write(‘I love c# \n‘)
mytxt1 = file3_object.write(‘I love .net core \n‘)
print(mytxt1)
print(mytxt1)
print(mytxt)


python 从入门到实践 第十章试一试

原文:https://www.cnblogs.com/upuser/p/13222029.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!