1654| 3
|
[已解决]帮忙看一下这两段C#如何写成python |
30鱼币
最佳答案第一段
','.join(['img url1', 'img url2', 'img url3'])
第二段
import hashlib
def MD5Hash(text):
if text is None or text is '':
return None
md5 = hashlib.md5()
md5.update(bytes(text, encoding='utf-8'))
return md5.hexdigest()
if __name__ == '__main__':
encode = MD5Hash('encode hash')
print(encode)
| ||
小甲鱼最新课程 -> https://ilovefishc.com
|
||
| ||
小甲鱼最新课程 -> https://ilovefishc.com
|
||
| ||
小甲鱼最新课程 -> https://ilovefishc.com
|
||
小黑屋|手机版|Archiver|鱼C工作室
( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)
GMT+8, 2025-7-12 13:46
Powered by Discuz! X3.4
© 2001-2023 Discuz! Team.