__new__() — constructor. __init__() — initializer.
__new__()
__init__()
1class User:2 def __new__(cls):3 return super().__new__(cls)4 5 def __init__(self):6 pass