python初心者です。
以下のようなプログラムをex.pyという名前で保存し、
python
1def test(): 2 test = ['a', 'b', 'c'] 3 return test 4 5print(test())
main.pyという以下のプログラムで呼び出したいです。
python
1import test 2if __name__ == '__main__': 3 print(test())
しかし以下のエラーメッセージが出てきてしまいます。
python
1TypeError: 'module' object is not callable
どのように改良したら良いのでしょうか。
ご教示お願い致します。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。