不带self
该python文件中,没有类的概念。因此所有的方法参数中,没有self
#文件名 solution.py def partition(head: Optional[ListNode], x: int) -> Optional[ListNode]: #... if __name__ == '__main__':
#注意这里的区别...
partition()
如果未来要在其他类里引用该函数,那么import需要写成:
import solution class testPy: def testMethod(self,x,y): #... solution.partition(x,y,z)
带self
该python文件中,有类的概念。因此所有的方法参数中,有self
#文件名 solution.py class Solution: def partition(self, head: Optional[ListNode], x: int) -> Optional[ListNode]: #... if __name__ == '__main__': #注意这里的区别... Solution().partition()
如果未来要在其他类里引用该函数,那么import需要写成:
#注意这里的区别 from solution import Solution class testPy: def testMethod(self,x,y): #... Solution().partition(x,y,z)
标签:__,不带,Python,self,partition,solution,import,#... From: https://www.cnblogs.com/frankcui/p/17486060.html