in this case I want to execute my hashed python code.
but the problem is, how can I do the hash and then decode the hash that I did earlier. then execute the python code that was hashed on the python compiler.
in example i have simple code :
print('Hello World!')
decode code to plain text :
>> import base64
>> encoded = b'cHJpbnQoIkhlbGxvIFdvcmxkISIp'
>> decoded = base64.b64decode(encoded)
>> decoded
>> b'print("Hello World!")'
the decoded will execute the code as plain text. so, how to get the compiler to run it as python code ?