03 2018 档案
摘要:压缩,解压操作 import zipfile # 压缩 # z = zipfile.ZipFile('123.zip', 'w') # z.write('123') # z.write('789') # z.close() # 解压 z = zipfile.ZipFile('123.zip', 'r') z.extractall() z.close()
阅读全文
摘要:PYTHON发送邮件 一,普通文本发送 二、带图片发送 三、附件发送 s
阅读全文
摘要:一,新增配置文件 import configparser config = configparser.ConfigParser() config["DEFAULT"] = {'Server': "45", 'Comp': "yes"} config['bitbuckket.org'] = {} co
阅读全文
浙公网安备 33010602011771号