码迷,mamicode.com
首页 > 其他好文 > 详细

文件操作

时间:2017-07-28 00:23:25      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:二进制文件   pre   nbsp   blog   nes   when   enum   continue   index   

‘‘‘
#data = open("yesterday",encoding="utf-8").read()
f = open("yesterday2",‘a‘,encoding="utf-8") #文件句柄
#a = append 追加

f.write("\nwhen i was young i listen to the radio\n")
data = f.read()
print(‘--read‘,data)

f.close()
‘‘‘





#f = open("yesterday2",‘r+‘,encoding="utf-8") #文件句柄 读写
#f = open("yesterday2",‘w+‘,encoding="utf-8") #文件句柄 写读
#f = open("yesterday2",‘a+‘,encoding="utf-8") #文件句柄 追加读写
f = open("yesterday2",wb) #文件句柄  二进制文件
f.write("hello binary\n".encode())
f.close()




‘‘‘

print(f.encoding)

#print(f.flush())
print(dir(f.buffer) )
#high bige

count = 0
for line in f:
    if count == 9:
        print(‘----我是分割线----------‘)
        count += 1
        continue
    print(line)
    count +=1

#low loop

for index,line in enumerate(f.readlines()):
    if index == 9:
        print(‘----我是分割线----------‘)
        continue
    print(line.strip())
#for i in range(5):
#    print(f.readline())
‘‘‘

 

文件操作

标签:二进制文件   pre   nbsp   blog   nes   when   enum   continue   index   

原文地址:http://www.cnblogs.com/ne-zha/p/7247952.html

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