'Trying to decode zlib compressed and base64 encoded data to a readable format in Python

import zlib, base64
exec(zlib.decompress(base64.b64decode('eJxsvUuu7UizpNfXKG5PJUANP==))) 
###The code is short for example only

How can I decode this? This is a picture of the code https://prnt.sc/26xf8ju



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source