We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
>>> complex_math_expression = 50 / (_ ** 2) * 2 >>> print(complex_math_expression(5)) 100.0
But:
>>> 50 / (5 ** 2) * 2 4.0
Not good :)