TypeError: func() missing 1 required positional argument: 'XXXXX' 报错原因
在面向对象编程的时候会报这样的错误:TypeError:func()missing1requiredpositionalargument:'XXXXX'报这个错误有两种原因:1.实例化的时候类名后没写上括号classP:def__init__(self):passdeffunc(self,content):print(content)p=Pp.func("hello")执行结果:TypeError