gpt4 book ai didi

python hashlib sha224 - 输入中不支持的字符

转载 作者:行者123 更新时间:2023-11-28 21:51:42 26 4
gpt4 key购买 nike

如果我这样做,我会得到这个:

>>> import hashlib
>>> hashlib.sha224('Nguyễn').hexdigest()
Unsupported characters in input

我还需要什么?

我有

Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)] on win32

最佳答案

这是因为你的IDE没有默认编码,所以你需要手动做:

>>> import hashlib
>>> hashlib.sha224(u'Nguyễn'.encode('utf-8')).hexdigest()

关于python hashlib sha224 - 输入中不支持的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29698591/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com