Post

@PythonPr D) Error
The error happens because in Python, any parameter with a default value must come after all required parameters. In your function, n1=5 has a default, but n2 does not, so Python raises SyntaxError: parameter without a default follows parameter with a default.
English



























