摘要: 16位随机字,包括大写字母,小写字母, 数字 import string import random size = 16 ret = ''.join(random.sample(string.ascii_letters + string.digits + string.ascii_letters + 阅读全文
posted @ 2021-12-27 18:03 huxl1 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 链接redis #!/usr/bin/python # -*- coding: UTF-8 -*- import redis HOST = "172.16.10.15" PORT = "6379" PSWD = "1234qwer" pool = redis.ConnectionPool(host= 阅读全文
posted @ 2021-12-27 17:05 huxl1 阅读(28) 评论(0) 推荐(0) 编辑