博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python文本读写数据
阅读量:4969 次
发布时间:2019-06-12

本文共 391 字,大约阅读时间需要 1 分钟。

1 # 写方法1 2 f  = open('tmp.txt','w') 3 f.write('hello world') 4 f.close() 5  6 # 写方法2 7 with open('tmp.txt','w') as f: 8     f.write('hello \n word') 9     10 # 读11 with open('tmp.txt', 'r') as f:12     print(f.read())13 14 # 逐行读15 with open('tmp.txt','r') as f:16     for line in f.readlines():17         print(line.strip())#strip()去除空行

 

转载于:https://www.cnblogs.com/hujianglang/p/9643702.html

你可能感兴趣的文章
prometheus配置
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
Strict Standards: Only variables should be passed by reference
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>