Skip to content

Instantly share code, notes, and snippets.

@Nishan8583
Created September 29, 2019 08:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nishan8583/f045dc4a9461ec35d1fb99932b98bdab to your computer and use it in GitHub Desktop.
Save Nishan8583/f045dc4a9461ec35d1fb99932b98bdab to your computer and use it in GitHub Desktop.
values = ['\x03', ' ', '&', '$', '-', '\x1e', '\x02', ' ','/','/','.','/']
result = ""
for val in values:
 result = result + chr(65 ^ ord(val))
print(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment