Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

extend a class python

# there is no extend keyword used in Python
# line #7 below is equivalent to "class Circle extends Shape" (in JAVA)

class Shape(object):
   pass

class Circle(Shape):   # in python we use superclass as arg to EXTEND Shape
   pass 

s = Shape()
c = Circle()
print(isinstance(s, Shape))
print(isinstance(c, Circle))
print(isinstance(c, Shape))
print(isinstance(s, Circle))
#  
# output
# True (s is an instance of Shape )
# True (c is an instance of Circle )
# True (c is also an instance of Shape )
# False (s is NOT an instance of Circle because Shape is a subclass )
Comment

python how to extend a class

# there is no extend keyword used in Python
# line #7 below is equivalent to "class Circle extends Shape" (in JAVA)

class Shape(object):
   pass

class Circle(Shape):   # in python we use superclass as arg to EXTEND Shape
   pass 

s = Shape()
c = Circle()
print(isinstance(s, Shape))
print(isinstance(c, Circle))
print(isinstance(c, Shape))
print(isinstance(s, Circle))
#  
# output
# True (s is an instance of Shape )
# True (c is an instance of Circle )
# True (c is also an instance of Shape )
# False (s is NOT an instance of Circle because Shape is a subclass )
Comment

PREVIOUS NEXT
Code Example
Python :: python date iso 8601 
Python :: python for loop even numbers 
Python :: nlargest heapq 
Python :: python get first day of year 
Python :: finding the Unique values in data 
Python :: tkinter menus 
Python :: get one from dataloader 
Python :: python ordered dictionary 
Python :: km/h a m/s 
Python :: change plot size matplotlib 
Python :: how to set breakpoint in python pdb 
Python :: plotting two columns of a dataframe in python 
Python :: random python 
Python :: true positive true negative manually 
Python :: pandas not in list 
Python :: python create list from range 
Python :: Using Variables with Multiple Instances of a Python Class 
Python :: convert index of a pandas dataframe into a column 
Python :: python parse url get parameters 
Python :: selection sort python 
Python :: read excel file in python 
Python :: python adding digits 
Python :: instabot login python 
Python :: django group by 
Python :: np vstack 
Python :: fizzbuzz python solution 
Python :: Set a random seed 
Python :: pandas sort by columns 
Python :: beautifulsoup remove all html tags 
Python :: how to save the model in python 
ADD CONTENT
Topic
Content
Source link
Name
5+4 =