Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Random Remarks Example in python

>>> class Warehouse:
        purpose = 'storage'
        region = 'west'

>>> w1 = Warehouse()
>>> print(w1.purpose, w1.region)
storage west
>>> w2 = Warehouse()
>>> w2.region = 'east'
>>> print(w2.purpose, w2.region)
storage east
Source by docs.python.org #
 
PREVIOUS NEXT
Tagged: #Random #Remarks #Example #python
ADD COMMENT
Topic
Name
9+6 =