1 2 3 4 5 ··· 7 下一页
摘要: def get_ip(count='10', start='2001:2:3:4:5:6:7:8'): starts = start.split(':') A = int(starts[0], 16) # int('a',16) 将字符串'a'进行16进制转换 base 存在时,视 x 为 base 阅读全文
posted @ 2021-06-17 20:54 dmwc 阅读(215) 评论(0) 推荐(0) 编辑
摘要: def get_ip(count='10', start='2001:2:3:4:5:6:7:8'): starts = start.split(':') A = int(starts[0], 16) # int('a',16) 将字符串'a'进行16进制转换 base 存在时,视 x 为 base 阅读全文
posted @ 2021-06-17 20:52 dmwc 阅读(94) 评论(0) 推荐(0) 编辑
摘要: def get_ip(count='10', start='2001:2:3:4:5:6:7:8'): starts = start.split(':') A = int(starts[0], 16) # int('a',16) 将字符串'a'进行16进制转换 base 存在时,视 x 为 base 阅读全文
posted @ 2021-06-17 20:51 dmwc 阅读(252) 评论(0) 推荐(0) 编辑
摘要: import timeimport calendar print('*'*50+str(time.time())+'*'*50)print(time.localtime(time.time()))print(time.asctime(time.localtime(time.time())))prin 阅读全文
posted @ 2021-06-15 20:01 dmwc 阅读(110) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_29689487/article/details/81634057 对称加密和非对称加密的区别 对称加密 对称加密: 加密和解密的秘钥使用的是同一个.非对称加密: 与对称加密算法不同,非对称加密算法需要两个密钥:公开密钥(publickey)和私有密 阅读全文
posted @ 2021-06-15 19:51 dmwc 阅读(399) 评论(0) 推荐(0) 编辑
摘要: [root@localhost ~]# dateThu Jun 3 20:13:54 CST 2021 [root@localhost ~]# date -s "2021-06-03 19:57:31" [root@localhost ~]# cal June 2021 Su Mo Tu We Th 阅读全文
posted @ 2021-06-03 20:20 dmwc 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 查询top.pu_recom_ta表中,create_time字段值重复的数据及重复次数 -- 查询工单表创建时间相同的工单 SELECT create_time,COUNT(*) AS COUNT FROM top.pu_recom_ta GROUP BY create_time HAVING C 阅读全文
posted @ 2021-06-03 18:58 dmwc 阅读(356) 评论(0) 推荐(0) 编辑
摘要: http://httpbin.org/get http://httpbin.org 阅读全文
posted @ 2021-05-19 20:54 dmwc 阅读(45) 评论(0) 推荐(0) 编辑
摘要: python模块 pip install ipython pip install itchat 阅读全文
posted @ 2021-05-19 20:53 dmwc 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 生成主机地址: 1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 4 def getIP(count=1000, startIP='1.1.1.1'): 5 a1 = int(startIP.split('.')[0]) 6 a2 = int(s 阅读全文
posted @ 2021-05-19 20:51 dmwc 阅读(920) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 7 下一页