# -*- coding:utf-8 -*- # 文本文件读写 # 读取文件 f = open("demo.txt") content = f.read() # 一般不用read读取,防止文件太大 f.close() # 关闭资源 # print content f = open("demo.txt") while True: # while循环 lines = f.readlines(10000) # 读取10000字节(读取一行,上限10000) if not lines: break # for line in lines: # print line.strip() # 方法用于移除字符串头尾指定的字符(默认为空格) 默认值时类似于trim # 写入文件 f = open("demo.txt", "w") # “w”是覆盖写 “a”是追加写 “wb”二进制写 f.writelines(["hhhhh", "llllll"]) # 写入列表 f.write("hhhhhlllll") # 写入字符串 f.close()
分类: Python
0 条评论