Python differences in class definitions -
this question has answer here:
i know following works never understood difference between
class animal: class animal(): class animal(object):
is style difference or more it?
in python 3, 3 same, i.e. derive object
.
Comments
Post a Comment