Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python self usage

don't confuse self with head in a Node class for a linked list or a tree
self is just used inside class to access non static methods and attributes for
this 'self' object you created
1) self.attribute=value
2) self.non_staticmethod()

# don't go on using self keyword itself inside the non static functions 
# like in a linked list new=self instead of new=head
# one reason to present above argument is that using class A(object)
# functions can be made static and self is then not required at all
# although above argument has flaws but still just use self for those 2 purpose only
(opinion is subject to change in future)
Comment

PREVIOUS NEXT
Code Example
Python :: python function return function 
Python :: set default dictionary in python 
Python :: python 3.3 release date 
Python :: python else syntax 
Python :: average of a list in function with python 
Python :: django values_list 
Python :: pyqt5 buttons 
Python :: using comma as the thousand separator 
Python :: tkinter while button not pressed 
Python :: python simplify fraction 
Python :: python variable definieren 
Python :: print numbers from 1 to 100 in python 
Python :: django-chartjs 
Python :: pandas explode 
Python :: string without space pythonm 
Python :: how to convert uppercase to lowercase and vice versa in python 
Python :: how to move an item from one list to another python 
Python :: csv to pdf python 
Python :: how to access dictionary inside an array python 
Python :: first n prime number finder in python 
Python :: make guessing game by python 
Python :: python convert integer to signed base 2 complement 
Python :: google codelabs 
Python :: utils/decorators.py", line 11, in __get__ raise AttributeError("This method is available only on the class, not on instances.") AttributeError: This method is available only on the class, not on instances. 
Python :: make row readonly tablewidget pyqt 
Python :: forgot password miguel grinberg 
Python :: derivative of multivariable function pytorch 
Shell :: remove nginx from ubuntu 
Shell :: docker delete all images 
Shell :: how to do compress video in linux 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =