摘要: 点击查看代码 import hashlib def md5_encrypt(text): # 1. 转换为字节(因为hashlib需要字节输入) text.encode('utf-8') # 2.使用md5()函数 sign = hashlib.md5(text.encode('utf-8')) # 阅读全文
posted @ 2025-08-16 19:43 神仙不在 阅读(6) 评论(0) 推荐(0)
摘要: https://www.mashangpa.com/problem-detail/4/ 需要登录次才能完成 https://www.52pojie.cn/forum.php?mod=viewthread&tid=2044873&highlight=js���� 阅读全文
posted @ 2025-08-16 19:17 神仙不在 阅读(23) 评论(0) 推荐(0)
摘要: 代码片段 点击查看代码 setInterval(function () { let video = document.querySelector('video') if (video.paused) { video.play() } }, 1000) 阅读全文
posted @ 2025-08-16 17:01 神仙不在 阅读(15) 评论(0) 推荐(0)