摘要: class str(object): """ str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str Create a new string object from the given object. If encoding or errors is specifie... 阅读全文
posted @ 2018-05-16 22:51 lei-jia-ming 阅读(216) 评论(0) 推荐(0)
摘要: python编译成exe文件: 1.pip install pyinstaller 2.pyinstaller -w -F xxxx.py 编译出来的文件以后台运行,只能在任务管理器看到该程序的进程,但是会有两个进程 3.pyinstaller -w xxx.py 编译后,会生成一个文件夹,里面有它 阅读全文
posted @ 2018-05-16 14:31 lei-jia-ming 阅读(711) 评论(0) 推荐(0)