📜  非默认参数遵循默认参数 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:25.510000             🧑  作者: Mango

代码示例1
The Python “SyntaxError: non-default argument follows default argument” error is
raised when you specify a default argument before a non-default argument. 
To solve this error, make sure that you arrange all the arguments in a function
so that default arguments come after non-default arguments.