博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python--将内容写入文本文件中
阅读量:5784 次
发布时间:2019-06-18

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

#-*- coding: utf-8 -*-import sys__cfg__version__  = 'debug'  # releaseif __name__ == '__main__':    print("main")    header = "File Header"        fd = open('./test.txt', 'w')        print(header, file = fd)        strout = ""        for i in range(500):        strout = ""        tmp = format(i, '15d')        strout += str(tmp)                print(strout, end = '', file = fd)                if ((i+1)%10) == 0:            if i != 0:                print("", end = '\n', file = fd)

  

转载地址:http://uovyx.baihongyu.com/

你可能感兴趣的文章
windows 如何查看端口占用情况?
查看>>
根据ImageView的大小来压缩Bitmap,避免OOM
查看>>
TEST
查看>>
loadrunner 的Administration Page里面设置
查看>>
程序员喜欢怎样的职位描述?(转)
查看>>
威胁快报|ProtonMiner挖矿蠕虫扩大攻击面,加速传播
查看>>
<<深入PHP面向对象、模式与实践>>读书笔记:面向对象设计和过程式编程
查看>>
架构的“一小步”,业务的一大步
查看>>
聊聊flink JobManager的heap大小设置
查看>>
PAT A1116
查看>>
App上架/更新怕被拒? iOS过审“避雷秘籍”请查收
查看>>
CentOS 7 防火墙操作
查看>>
关于 top 工具的 6 个替代方案
查看>>
程序员最讨厌的9句话,你可有补充?
查看>>
PAT A1037
查看>>
浅谈RPC
查看>>
Learn Python the Hard Way
查看>>
【C++基础】 类中static private public protected
查看>>
centos6装python3,并安装requests, lxml和beautifulsoup模块
查看>>
一个同行前辈的博客链接
查看>>