摘要: 1.下载Git客户端并安装:https://git-scm.com/downloads 2.打开Pycharm编辑器点击File - settings-搜索框输入Git 及cmd命令输入Git--检查是否安装好Git 选择Git--Path to Git executable 填写git客户端的gi 阅读全文
posted @ 2021-06-16 17:44 等待iing 阅读(143) 评论(0) 推荐(0)
摘要: 1 import string 2 3 print(string.digits) #所有的整数 4 5 print(string.ascii_lowercase) #所有的小写字母 6 7 print(string.ascii_uppercase) #所有的大写字母 8 9 print(string 阅读全文
posted @ 2021-06-16 17:14 等待iing 阅读(19) 评论(0) 推荐(0)
摘要: import hashlib def my_md5(s): """ :param s: 要加密的数据 :return: 加密后结果 """ m = hashlib.md5(s.encode()) result = m.hexdigest() return result 阅读全文
posted @ 2021-06-16 17:08 等待iing 阅读(45) 评论(0) 推荐(0)