-1
import re
class work:
def a(self, i):
i = 10
j = 12
self.i = i
self.match(i)
self.j = j
self.match(j)
def match(self, a, b):
print("this is I", a)
print("this is J", b)
x = work()
x.a(0)
self.match(i)
TypeError: match() missing 1 required positional argument: 'b'
i
と一致するようにj
をインポートしようとしています!任意のヘルプあなたが関数定義で二つの引数を与えている欠けて1必要な位置引数 'b'