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)

更新时间: 30-Jan-2020

7K+ 浏览次数

启动你的职业生涯

通过完成课程获取认证

开始学习
广告