① python项目文件(多个子文件,.py文件等)如何用pyinstaller打包为可执行exe文件
文件构成
使用pyinstaller打包的时候,仅打包.py文件,其余依赖项只需在打包完成后,拷入打包生成的根目录即可。
多文件打包
命令格式如下,下命令为一条命令,为方便显示做了分行处理:
pyinstaller [主文件] -p [其他文件1] -p [其他文件2]
--hidden-import [自建模块1]
--hidden-import [自建模块2]
# 以上为一整条命令
以上文图中结构为例,在根目录打开命令窗口,输入命令:
pyinstaller main.py -p mysql.py -p other.py --hidden-import mysql --hidden-import other
在目录结构:“程序根目录distmain” 下可以找到生成的main.exe。将其他依赖文件拷贝进入“程序根目录distmain” 下,即可运行。
② python 用循环创建多个文件
Python编程中用for()循环创建多个文件,代码如下:
#coding=utf-8
'''
Createdon2015-07-05
'''
importos
importtime
defnsfile(s):
''''''
#判断文件夹是否存在,如果不存在则创建
b=os.path.exists("E:\testFile\")
ifb:
print"FileExist!"
else:
os.mkdir("E:\testFile\")
#生成文件
foriinrange(1,s+1):
localTime=time.strftime("%Y%m%d%H%M%S",time.localtime())
#printlocaltime
filename="E:\testFile\"+localTime+".txt"
#a:以追加模式打开(必要时可以创建)append;b:表示二进制
f=open(filename,'ab')
testnote='测试文件'
f.write(testnote)
f.close()
#输出第几个文件和对应的文件名称
print"file"+""+str(i)+":"+str(localTime)+".txt"
time.sleep(1)
print"ALLDown"
time.sleep(1)
if__name__=='__main__':
s=input("请输入需要生成的文件数:")
nsfile(s)
③ python创建根据时间的txt文件
importtime
tm=time.strftime("%Y-%m-%d%X",time.localtime())
timeslog=tm+r'.txt'
sp=open(timeslog,'w')
sp.close()
代码没问题
但是Windows系统中 文件名不能包含下列任何字符:
/ : * ? ”(英文右引号) < > |
所以考虑下修改下时间格式
④ 请教各位如何用python创建文件和文件夹
python创建文件
>>>f=open('f.txt','w')#r只读,w可写,a追加
>>>foriinrange(0,10):f.write(str(i)+' ')
>>>f.close()
python创建文件夹
importos
os.makedirs("目录")
如果解决了您的问题请采纳!
如果未解决请继续追问!