Python 'takes exactly 1 argument (2 given)' Python error

Posted 皎陽

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 'takes exactly 1 argument (2 given)' Python error相关的知识,希望对你有一定的参考价值。

Python,定义urlConfig 接收参数,正常传递参数时,出现,多给了一个参数的错误问题,

定义class的函数之后,在调用的时候出现“‘takes exactly 1 argument (2 given)‘ Python error”。

查询Interesting ‘takes exactly 1 argument (2 given)‘ Python error 之后,原来在python中,在使用instance调用其class的方法的时候,是相当与在调用中加入本身作为第一个参数的。如下:

a.method(k)

就相当与:

a.method(a, k)

所以,在对函数进行定义的时候,需要在函数内部参数中第一个定义为self,如:

class Person():

def method(self, k):

    ...

如果想作为静态函数调用,可以在定义函数上方加上“@staticmethod”来进行标识。

以上是关于Python 'takes exactly 1 argument (2 given)' Python error的主要内容,如果未能解决你的问题,请参考以下文章

Python 文件操作Error: binary mode doesn't take an encoding argument

Time range (447392) for take 'Take 001' is larger than maximum allowed(100000).

You mean you can't take less?

python测试开发django-171.ORM查询之exact和iexact

Take a Look Inside China's Infamous "Marriage Markets"

Python中错误之 TypeError: object() takes no parametersTypeError: this constructor takes no arguments(示例