首页 > 代码库 > Python文件格式化写入
Python文件格式化写入
[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]#
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。