In python, is there a difference between repr and the backquote ` (left of 1)?
For demonstration:
class A(object):
def __repr__(self):
return 'repr A'
def __str__(self):
return 'str A'
>>> a = A()
>>> repr(a)
#'repr A'
>>> `a`
#'repr A'
>>> str(a)
#'str A'
Do the backquotes just call repr? Is it simply for convenience? Is there any significant speed difference?
Thanks!
timeitto satisfy your curiosity regarding speed. You have the Python change notes to satisfy your curiosity on deprecated syntax. – S.Lott Sep 20 '11 at 19:52python backquotesreturns 2 items about backquotes in a shell, one about a depreciation warning that is hard to follow, and then this question. I never thought to look for "reverse quotes" in the documentation because I've never heard them called that before (nor "backticks" for the duplicate question). I had no idea they were deprecated. How else should I go about finding information on a device that is rarely used and has multiple names? – TorelTwiddler Sep 20 '11 at 22:22