摘要:
简介 pyinstaller就是将python脚本打包成可执行文件exe 官方文档:https://pypi.org/project/pyinstaller/ 安装 pip install Pyinstaller pyinstaller 常用的命令: -F:仅仅生成一个文件,不暴露其他信息,启动较慢 阅读全文
摘要:
四大库各自好用的地方 这里采用文字叙述为大家讲解这四大模块各自的用法,具体内容会在后面详细介绍。 1. os库 对于os模块来说,这是大家最熟悉的一个库,功能相对很齐全,主要像以下这些功能: os.getcwd():获取当前的工作路径; os.chdir() :改变当前工作目录到指定的路径; os. 阅读全文
摘要:
wmi模块 import wmi w = wmi.WMI() for n in w.Win32_NetworkAdapter(): if n.MACADDress is None or n.PhysicalAdapter is False: continue mac = n.MACADDress n 阅读全文