show/hide this revision's text 3 Minor spelling/grammar corrections

Function definition in pythonPython

Hi,

I am new to pythonPython. I was trying to define and run a simple funtion function in a classand was trying to access .can

Can anybody pls please tell me what's wrong in my code:

class A :
    def m1(name,age,address) :
        print('Name -->',name)
        print('Age -->',age)
        print('Address -->',address)


>>> a = A()
>>> a.m1('X',12,'XXXX')
Traceback (most recent call last):
  File "<pyshell#22>", line 1, in <module>
    a.m1('X',12,'XXXX')

I am getting below error
TypeError: m1() takes exactly 3 positional arguments (4 given)

show/hide this revision's text 2 retaged -- that's generic Python question, not Py3K related
show/hide this revision's text 1

Function definition in python

Hi , I am new to python. I was trying to define a simple funtion in a class and was trying to access . can anybody pls tell what's wrong in my code

class A :
    def m1(name,age,address) :
        print('Name -->',name)
        print('Age -->',age)
        print('Address -->',address)


>>> a = A()
>>> a.m1('X',12,'XXXX')
Traceback (most recent call last):
  File "<pyshell#22>", line 1, in <module>
    a.m1('X',12,'XXXX')

I am getting below error
TypeError: m1() takes exactly 3 positional arguments (4 given)