Python 文件 IO

返回上一级

以下代码演示了Python基本的文件操作,包括 open,read,write:

# Filename : main.py
# author by : www.twle.cn

# 写文件
with open("test.txt", "wt") as out_file:
    out_file.write("该文本会写入到文件中\n看到我了吧!")

# Read a file
with open("test.txt", "rt") as in_file:
    text = in_file.read()

print(text)

运行这段代码,输出结果如下:

该文本会写入到文件中
看到我了吧!

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.