1. 程式人生 > >python類中函式互相呼叫記得帶self

python類中函式互相呼叫記得帶self

import time

from selenium import webdriver

import pymysql

import uuid

class  main (object):

          def  __init__ (self):

           self.main()

           self.x()

           self.y()

         def   mainall (self):

                self.x(a) #類中函式相互呼叫記得帶self

               self.y(b)

         def   x(self):

         def   y(self):