Python的文件和信息的输入输出 :
【1】 文件的打开方式 :
【2】 文件对象的方法
f = open(‘d:\record.txt’)
print(f)
print(f.read(36))
print(f.tell())
print(list(f))
f.close()
f = open(‘d:\record.txt’)
lines=list(f)
for each in lines:
print(each)
f = open(‘d:/record.txt’)
f.write(‘I love my wife’)
f.close()
f = open(‘d:/test.txt’,‘w’)
f.write(‘I love my wife’)
f.close()
f = open(‘d:/test.txt’)
lines = list(f)
for each in lines:
print(each)
【注意】 f.open(‘d:/test.txt’,‘w’) 带上‘w’选项 的话 , 后面再用 lines = list(f) 就会报错 — lines = list(f) io.UnsupportedOperation: not readable 。