Created
June 24, 2014 19:55
-
-
Save LeeBergstrand/77086be3e3319323db8c to your computer and use it in GitHub Desktop.
Why you should think about hidden escape characters in your code...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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