What should be paid attention to when using python
This article mainly introduces the relevant knowledge of "what should be paid attention to in the use of python". The editor shows you the operation process through an actual case, and the operation method is simple, fast and practical. I hope this article "what should be paid attention to in the use of python" can help you solve the problem.
1. An instance method is a method that belongs to an instance object. When defining an instance method, the first parameter must be self. Self refers to the current instance object.
2. The instance method is called, and the value is not needed and cannot be passed to self. Self is automatically passed parameters by the interpreter.
Example
Class getMin (): # instance method def fun (self, arr) N): print (arr [n-1]) # method @ classmethod def class_fun (cls): print ("this is class function") if _ _ name__ = "_ _ main__": arr = input (). Strip (). Split (") int_arr = [] for item in arr: int_arr.append (int (item) n = int (input ( ) instance = getMin () # call the instance method instance.fun (int_arr) with an instance N) # using class call method getMin.fun (instance, int_arr, n) # instance calling class method instance.class_fun () # class calling class method getMin.class_fun () about what to pay attention to when using python Thank you for your reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.