Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

new in python

# Python
#demonstrate __new__
  
#don't forget the object specified as base
class A(object):
    def __new__(cls):
         print("Creating instance")
         return super(A, cls).__new__(cls)
  
    def __init__(self):
        print("Init is called")
  
A()
 
PREVIOUS NEXT
Tagged: #python
ADD COMMENT
Topic
Name
3+8 =