Python 中的必要参数
必要参数是有序传递给函数的参数。此时,函数调用中参数的数量应与函数定义中的数量完全相同。
要调用函数 printme(),必须传递一个参数,否则会返回如下语法错误 −
示例
#!/usr/bin/python # Function definition is here def printme( str ): "This prints a passed string into this function" print str return; # Now you can call printme function printme()
输出
执行上述代码后,会返回以下结果 −
Traceback (most recent call last): File "test.py", line 11, in <module> printme(); TypeError: printme() takes exactly 1 argument (0 given)
广告