08 2021 档案
摘要:首先需要安装两个打包用到的依赖包: pip install setuptools pip install wheel 包分发的始祖:distutils distutils 是 Python 的一个标准库,从命名上很容易看出它是一个分发(distribute)工具(utlis),它是 Python 官
阅读全文
摘要:--如果xp_cmdshell没有启用,请先启用 sp_configure 'show advanced options',1 RECONFIGURE GO sp_configure 'xp_cmdshell',1 RECONFIGURE GO目标共享目录:\\10.10.56.43\AutoBac
阅读全文
摘要:一.两个list差集 a = [1,2,3] b = [2,3] 想要的结果是[1] 下面记录一下三种实现方式: 1. 正常的方式 ret = [] for i in a: if i not in b: ret.append(i) 2.简化版 ret = [ i for i in a if i no
阅读全文