class data: def __init__(self): 変数定義 def cls(): x = data() def test(x) y = x return y def test2(x) z = test(x) print(z) test2(x)
test2(x)の部分でundefined variable 'x'とでてしまいます。
ここの引数には何を入れるべきなのでしょうか。ご教授お願い致します。
回答2件
あなたの回答
tips
プレビュー
投稿2020/09/14 03:00
class data: def __init__(self): 変数定義 def cls(): x = data() def test(x) y = x return y def test2(x) z = test(x) print(z) test2(x)
test2(x)の部分でundefined variable 'x'とでてしまいます。
ここの引数には何を入れるべきなのでしょうか。ご教授お願い致します。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。