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