标签: python
我不太了解为什么python的__init__()方法中必须使用关键字self。
__init__()
class Test: def __init__(self): print("Test")
我知道“自我”代表对象,但是出于什么原因我需要在“构造函数”中使用它?我的意思是,如果它与后台发生的事情有关,那么为什么不总是将其遗弃呢?
谢谢。