Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在 Python 中编写了一个 RSA 实现,现在已经成功对其进行了加密,但是当它打印出密码时,每次它都输出“0x1L”。我相信这是一个很长的数字,但是我不知道如何显示完整的数字。如果需要我的代码,我会在评论部分发布(它很长)。
谢谢
Python 将结果表示为0x1L表示数字的类型和值 - 但是,它根本不会截断数字。虽然它是作为long内部存储的,但它的值仍然只是1在这种情况下。
0x1L
long
1