如何在我的代码中显示正确的单词,我的代码是:os.urandom(64)

时间:2010-05-31 02:15:59

标签: python

我的代码是:

print os.urandom(64)

输出:

> "D:\Python25\pythonw.exe"  "D:\zjm_code\a.py" 
\xd0\xc8=<\xdbD'
\xdf\xf0\xb3>\xfc\xf2\x99\x93
=S\xb2\xcd'\xdbD\x8d\xd0\\xbc{&YkD[\xdd\x8b\xbd\x82\x9e\xad\xd5\x90\x90\xdcD9\xbf9.\xeb\x9b>\xef#n\x84

这是不可读的,所以我尝试了这个:

print os.urandom(64).decode("utf-8")

然后我得到:

> "D:\Python25\pythonw.exe"  "D:\zjm_code\a.py" 
Traceback (most recent call last):
  File "D:\zjm_code\a.py", line 17, in <module>
    print os.urandom(64).decode("utf-8")
  File "D:\Python25\lib\encodings\utf_8.py", line 16, in decode
    return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode bytes in position 0-3: invalid data

我该怎样做才能获得人类可读的输出?

3 个答案:

答案 0 :(得分:8)

不缺选择。这是一对夫妇:

>>> os.urandom(64).encode('hex')
'0bf760072ea10140d57261d2cd16bf7af1747e964c2e117700bd84b7acee331ee39fae5cff6f3f3fc3ee3f9501c9fa38ecda4385d40f10faeb75eb3a8f557909'
>>> os.urandom(64).encode('base64')
'ZuYDN1BiB0ln73+9P8eoQ3qn3Q74QzCXSViu8lqueKAOUYchMXYgmz6WDmgJm1DyTX598zE2lClX\n4iEXXYZfRA==\n'

答案 1 :(得分:2)

os.urandom给你一个64字节的字符串。用十六进制编码可能是在某种程度上使其“人类可读”的最佳方式。 E.g:

>>> s = os.urandom(64)
>>> s.encode('hex')
'4c28351a834d80674df3b6eb5f59a2fd0df2ed2a708d14548e4a88c7139e91ef4445a8b88db28ceb3727851c02ce1822b3c7b55a977fa4f4c4f2a0e278ca569e'

当然,这会在结果中显示128个字符,这可能太长了,无法轻松阅读;但是很容易将它拆分 - 例如:

>>> print s[:32].encode('hex')
4c28351a834d80674df3b6eb5f59a2fd0df2ed2a708d14548e4a88c7139e91ef
>>> print s[32:].encode('hex')
4445a8b88db28ceb3727851c02ce1822b3c7b55a977fa4f4c4f2a0e278ca569e

两个64个字符的块,每个在单独的行上显示可能更容易在眼睛上。

答案 2 :(得分:1)

随机字节不太可能是unicode字符,所以我不会惊讶你得到编码错误。相反,你需要以某种方式转换它们。如果您要做的就是看看它们是什么,那么就像:

print [ord(o) for o in os.urandom(64)]

或者,如果您希望将其作为十六进制0-9a-f:

print ''.join( [hex(ord(o))[2:] for o in os.urandom(64)] )