导语:
本文主要介绍了关于python位置参数如何使用的相关知识,希望可以帮到处于编程学习途中的小伙伴
说明
1、实参必须按照正确的顺序传输到函数中。
2、调用函数中指定的实参个数必须与形参个数一致,否则Python解释器会抛出TypeError异常,提示没有必要的位置参数。
实例
def girth(width , height):
return 2 * width+height
#调用函数时,必须传递 2 个参数,否则会引发错误
print(girth(3))
运行后报Traceback错误。
Traceback (most recent call last):
File "/Volumes/Develop/Python_learn/PycharmProjects/python_demo_1/demo/function/locate_fun.py", line 6, in <module>
print(girth(3))
TypeError: girth() missing 1 required positional argument: 'height'
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python3.6.5如何运行10/22
- ♥ python如何判断变量是否存在?11/06
- ♥ 如何用python抓取数据09/29
- ♥ python自带的idle如何使用09/21
- ♥ python3在哪里可以下载10/08
- ♥ python3判断key是否存在于字典中09/13
内容反馈