Backticks are a deprecated alias for repr(). Don't use them any more, the syntax was removed in Python 3.0.

The following code snippet illustrates this rule :

return `num`     # Non-Compliant
return repr(num) # Compliant