首页 > 编程语言 > 详细

Python文件格式化写入

时间:2014-06-21 08:50:39      阅读:462      评论:0      收藏:0      [点我收藏+]
[root@localhost test]# cat 1.py 
fd = open(‘format.txt‘,‘w‘)
head = "%10s%10s%10s\n"%(‘id‘,‘name‘,‘record‘)
item1 = "%10s%10s%10s\n"%(‘001‘,‘evilxr‘,‘98‘)
item2 = "%10s%10s%10s\n"%(‘002‘,‘Python‘,‘88‘)
fd.write(head)
fd.write(item1)
fd.write(item2)
fd.close()

 

[root@localhost test]# cat format.txt 
        id      name    record
       001    evilxr        98
       002    Python        88
[root@localhost test]# 

 

Python文件格式化写入,布布扣,bubuko.com

Python文件格式化写入

原文:http://www.cnblogs.com/evilxr/p/3795104.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!