码迷,mamicode.com
首页 > 编程语言 > 详细

Python 文件 I/O

时间:2019-11-13 16:02:38      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:cin   pad   python   erro   imp   nbsp   otf   sts   exists   

文件读写

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

标签:cin   pad   python   erro   imp   nbsp   otf   sts   exists   

原文地址:https://www.cnblogs.com/JunzhaoLiang/p/11849933.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!