1. 首页
  2. 数据库
  3. 其它
  4. Python3.5 创建文件的简单实例

Python3.5 创建文件的简单实例

上传者: 2020-12-31 16:32:27上传 PDF文件 40.83KB 热度 8次
实例如下所示: #coding=utf-8 ''' Created on 2012-5-29 @author: xiaochou ''' import os import time def nsfile(s): '''The number of new expected documents''' #判断文件夹是否存在,如果不存在则创建 b = os.path.exists("E:\\testFile\\") if b: print("File Exist!") else: os.mkdir("E:\\testFile\\") #生成文件 for i in
用户评论