python使用print写文件

Posted RoadWide

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用print写文件相关的知识,希望对你有一定的参考价值。

刚刚看sumo的官方教程,有一段代码是生成配置文件,发现python中的print函数也可以写文件。

    with open("data/cross.rou.xml", "w") as routes:
        print("""<routes>
        <vType id="typeWE" accel="0.8" decel="4.5" sigma="0.5" length="5" minGap="2.5" maxSpeed="16.67" guiShape="passenger"/>
        <vType id="typeNS" accel="0.8" decel="4.5" sigma="0.5" length="7" minGap="3" maxSpeed="25" guiShape="bus"/>

        <route id="right" edges="51o 1i 2o 52i" />
        <route id="left" edges="52o 2i 1o 51i" />
        <route id="down" edges="54o 4i 3o 53i" />""", file=routes)

其中三引号的作用之前文章写过,是为了保证代码中的换行效果能正常导出

以上是关于python使用print写文件的主要内容,如果未能解决你的问题,请参考以下文章

Python snippet(代码片段)

学习笔记:python3,代码片段(2017)

Python统计1到100之和,输出结果?

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段

使用 Python 代码片段编写 LaTeX 文档

python的for循环语句怎么写