10 2018 档案
摘要:MySQL的8.0.*版本使用的是caching_sha2_password验证方式,而Navicat Premium 12还不支持该种方式。解决方案: 1,降低mysql的版本 2,设置mysql支持Navicat的mysql_native_password验证 在数据库命令行中输入:ALTER
阅读全文
摘要:# 操作系统模块 # import os# 待续# 解释器模块 # import sys# 待续# 加密 # import hashlib## m = hashlib.md5()# m.update("HelloWorld".encode("utf8"))# print(m.hexdigest())
阅读全文
posted @ 2018-10-24 17:00
Weibull
摘要:# 封装 # class Bar:# def __init__(self,name,age,content):# self.name = name# self.age = age# self.content = content# def foo(self):# print(self.name,sel
阅读全文
posted @ 2018-10-24 16:57
Weibull