码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2020-07-02 00:15:07      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:字典   方法   内容   object   ace   打开   line   定义   replace   

‘‘‘这是读取和写入文件的课后题‘‘‘
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 从入门到实践 第十章试一试

标签:字典   方法   内容   object   ace   打开   line   定义   replace   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!