gpt4 book ai didi

id(...) 内置函数的 Python 反函数

转载 作者:太空狗 更新时间:2023-10-29 22:11:14 26 4
gpt4 key购买 nike

id 内置函数是否有反向或反向?我正在考虑使用它来编码和解码字符串,而不会像 PyCrypto 库那样花费太多时间或大量开销。我的需求非常简单,所以我不想使用 PyCrypto 进行简单的编码和解码。

类似于:

>>> id("foobar")
4330174256
>>> reverse_id(4330174256) # some function like this to reverse.
"foobar"

最佳答案

我不想盗用 man who answered the question 的学分

This can be done easily by ctypes:

import ctypes
a = "hello world"
print ctypes.cast(id(a), ctypes.py_object).value
output:

hello world

关于id(...) 内置函数的 Python 反函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24815771/

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