Skip to content

Instantly share code, notes, and snippets.

@LeeBergstrand
Created June 24, 2014 19:55
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 LeeBergstrand/77086be3e3319323db8c to your computer and use it in GitHub Desktop.
Save LeeBergstrand/77086be3e3319323db8c to your computer and use it in GitHub Desktop.
Why you should think about hidden escape characters in your code...
#!/usr/bin/env python
# Why you should think about hidden escape characters in your code...
# Only some editors show hidden characters.
Blam = ":"
print repr(Blam)
Blam = ":"
print repr(Blam)
print repr("WAT")
print repr("WAT")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment