gpt4 book ai didi

python - 为什么我的脚本不产生输出,而交互式 session 中的相同代码却产生输出?

转载 作者:太空宇宙 更新时间:2023-11-04 07:19:47 25 4
gpt4 key购买 nike

我从 pycrypto 示例中得到以下信息:

>>> from Crypto.Cipher import AES
>>> obj = AES.new('This is a key456', AES.MODE_ECB)
>>> message = "The answer is no"
>>> ciphertext = obj.encrypt(message)
>>> ciphertext
'o\x1aq_{P+\xd0\x07\xce\x89\xd1=M\x989'
>>> obj2 = AES.new('This is a key456', AES.MODE_ECB)
>>> obj2.decrypt(ciphertext)
'The answer is no'

现在我创建一个脚本:

#!/usr/bin/env python
from Crypto.Cipher import AES
obj = AES.new('This is a key456', AES.MODE_ECB)
message = "The answer is no"
ciphertext = obj.encrypt(message)
ciphertext
#'o\x1aq_{P+\xd0\x07\xce\x89\xd1=M\x989'
obj2 = AES.new('This is a key456', AES.MODE_ECB)
obj2.decrypt(ciphertext)

当我运行脚本时。我希望看到字符串输出

'o\x1aq_{P+\xd0\x07\xce\x89\xd1=M\x989'
'The answer is no'

但是我什么也没得到。我尝试了 print ciphertext,但它打印了乱码。

请帮忙。

最佳答案

你必须调用 print 函数(或 py2 中的 print 语句)来打印你想要打印的内容:

#!/usr/bin/env python
from Crypto.Cipher import AES
obj = AES.new('This is a key456', AES.MODE_ECB)
message = "The answer is no"
ciphertext = obj.encrypt(message)
print(ciphertext)
#'o\x1aq_{P+\xd0\x07\xce\x89\xd1=M\x989'
obj2 = AES.new('This is a key456', AES.MODE_ECB)
print(obj2.decrypt(ciphertext))

关于python - 为什么我的脚本不产生输出,而交互式 session 中的相同代码却产生输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23023581/

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