Python 文件 I/O

Posted Junzhao

tags:

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

文件读写

with open(‘Game/Dota.txt‘,‘w‘)as file:
    file.write(‘Radiant Victory! ‘)

当Game文件夹未创建时,出现FileNotFoundError

必须手动创建文件夹,或者用

import os
# 创建的目录
path = "Game/Valve/"
if not os.path.exists(path):
    os.makedirs(path)
模式 r r+ w w+ a a+
* *   *   *
  * * * * *
创建     * * * *
覆盖     * *    
指针在开始 * * * *    
指针在结尾         * *

 

 

以上是关于Python 文件 I/O的主要内容,如果未能解决你的问题,请参考以下文章

Python文件操作 I/O

17python 文件I/O

2017.12.20 Python 文件I/O

Python 15 I/O编程

Python 文件 I/O

Python 文件I/O