Skip to content

Instantly share code, notes, and snippets.

@datamafia
Created February 13, 2015 15:34
Show Gist options
  • Select an option

  • Save datamafia/71d353ea7a85373df68c to your computer and use it in GitHub Desktop.

Select an option

Save datamafia/71d353ea7a85373df68c to your computer and use it in GitHub Desktop.
# Fast and haphazard introduction to repr in Python supports #twitter
#!/usr/bin/env python
# Fast and haphazard introduction
# to repr in Python
g = 'x'
print(g) # x
# reprESENTATION is if... (terminal)
print(repr(g)) # 'x'
repr = 'y'
print(repr) # y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment