首页 > 编程 > Python > 正文

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

2020-01-04 15:21:16
字体:
来源:转载
供稿:网友

实例如下所示:

#coding=utf-8'''Created on 2012-5-29@author: xiaochou'''import osimport timedef 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 range(1,s+1):  localTime = time.strftime("%Y%m%d%H%M%S",time.localtime())  #print localtime  filename = "E://testFile//"+localTime+".java"  #a:以追加模式打开(必要时可以创建)append;b:表示二进制  f = open(filename,'ab')  testnote = 'private String username'  f.write(testnote.encode('utf-8'))  f.close()  #输出第几个文件和对应的文件名称  print("file"+" "+str(i)+":"+str(localTime)+".txt")  time.sleep(1) print("ALL Down") time.sleep(1)if __name__ == '__main__': s = int(input("请输入需要生成的文件数:")) nsfile(s)

本想利用Python 读取excel 文件,对应生成domain 文件,但是由于时间关系,暂时先不开发了,这里先生成.java 文件,未来有时间进行开发,也算给编程,代码搬运工减少工作量。

以上这篇Python3.5 创建文件的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持VEVB武林网。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表