class mahschool:
    def print():
        print('Say something')

a = mahschool()

a.print()



With this, I get this error:

Traceback (most recent call last):
  File "test.py", line 8, in <module>
    a.print()
TypeError: print() takes 0 positional arguments but 1 was given


What did I do wrong?

Thanks!
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to