06 2021 档案

摘要: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 阅读(235) 评论(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 阅读(104) 评论(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 阅读(295) 评论(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 阅读(129) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/qq_29689487/article/details/81634057 对称加密和非对称加密的区别 对称加密 对称加密: 加密和解密的秘钥使用的是同一个.非对称加密: 与对称加密算法不同,非对称加密算法需要两个密钥:公开密钥(publickey)和私有密 阅读全文
posted @ 2021-06-15 19:51 dmwc 阅读(432) 评论(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 阅读(85) 评论(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 阅读(377) 评论(0) 推荐(0)