0

Can I block others from seeing my code? I'm working on something in Python. As I save it, it's a (.py) and everyone can right-click and see the code. This is unlike C where I generate an .exe that you can't simply (!) read.

4

1 回答 1

0

您可以阅读 C 中编译过程生成的汇编代码。代码没有隐藏:阅读起来有点复杂,因为它是 ASM。但它完全而且绝对没有隐藏:)

Python 是由开源社区制作的,所以这个想法不是隐藏你的代码。如果您想从 Python 代码制作 .exe,可以尝试 Py2Exe 或 Freeze :

干杯,

K。

于 2013-05-09T14:50:56.163 回答