Skip to content

Instantly share code, notes, and snippets.

@Jonoans
Last active June 20, 2020 14:47
Show Gist options
  • Save Jonoans/50885d79ddcb4a32ca67986040b505ee to your computer and use it in GitHub Desktop.
Save Jonoans/50885d79ddcb4a32ca67986040b505ee to your computer and use it in GitHub Desktop.
import base64
decoded = '''
(dp0
Vname
p1
VJill
p2
s.
'''.strip().encode('utf-8')
encoded = base64.b64encode(decoded)
print(encoded.decode('utf-8'))
# Outputs: KGRwMApWbmFtZQpwMQpWSmlsbApwMgpzLg==
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment