Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python class constructor

class Human:
	def __init__(self, name):
      self.name = name

h1 = Human("Bob")
print(h1.name) # prints Bob, the name passed from constructor
 
PREVIOUS NEXT
Tagged: #python #class #constructor
ADD COMMENT
Topic
Name
4+9 =