TypeError fun got multiple values for argument 'arg'
Posted odejsjhshw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError fun got multiple values for argument 'arg'相关的知识,希望对你有一定的参考价值。
1、错误描述
>>> def fun(arg):
pass;
>>> fun(1,arg=3);
Traceback (most recent call last):
File "<pyshell#15>", line 1, in <module>
fun(1,arg=3);
TypeError: fun() got multiple values for argument ‘arg‘
>>>
2、错误原因
函数传入的参数只有一个arg,但是在调用时传入两个参数,导致报错
3、解决办法
(1)调用函数时传入一个参数值
(2)如果确实要传多个参数,可以利用def func(*arg)
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow
以上是关于TypeError fun got multiple values for argument 'arg'的主要内容,如果未能解决你的问题,请参考以下文章
xgboost : TypeError: predict() got an unexpected keyword argument 'pred_contribs'
pyinstaller打包任何py文件TypeError: an integer is required (got type bytes)
CUDA GPU 处理:TypeError: compile_kernel() got an unexpected keyword argument 'boundscheck'
Python Multiprocessing,函数的一个参数是一个迭代器,Got TypeError
TypeError: index() got an unexpected keyword argument ‘doc_type‘
Python2.7 在使用BSTestRunner.py时报错TypeError: unicode argument expected, got 'str'