python 编译反编译


def test():
    print(1+1)

if __name__ == '__main__':
    test()



'''
pip install uncompyle6

编译
python -m py_compile test.py 
生成test.pyc文件 反编译 uncompyle6 test.pyc > test.py
'''