# 写方法1
f = open('tmp.txt','w')
f.write('hello world')
f.close() # 写方法2
with open('tmp.txt','w') as f:
f.write('hello \n word') # 读
with open('tmp.txt', 'r') as f:
print(f.read()) # 逐行读
with open('tmp.txt','r') as f:
for line in f.readlines():
print(line.strip())#strip()去除空行
相关文章
- 02-10python中查询数据库时fetchone()函数和fetchall()函数的区别
- 02-10python – 在pandas数据框中将索引从一列移动到另一列
- 02-10CV学习笔记(十九):文本数据集生成(text_renderer)
- 02-10python使用xlrd模块读写Excel文件的方法
- 02-10python2自动读取股票数据示例
- 02-10Python笔记-csv文件的读写
- 02-10python-GAE数据存储区缓存键与过滤器
- 02-10运行Google App Engine Python的本地数据存储区是否有任何限制?
- 02-10python – 使用文本中的sympy打印希腊字母
- 02-10python 读不同编码的文本,传递一个可选的encoding 参数给open() 函数