main.pyからtest.pyのリストを読み込んで参照したいと考えているのですが、実行するとエラーになります。
他のファイルのデータを読み込んで参照するにはどのようにすればよいのでしょうか?
python
1#test.py 2url_list = [ 3 '//shop.nitori-net.jp/nitori/spot/detail?code=0000000012', 4 '//shop.nitori-net.jp/nitori/spot/detail?code=0000000018' 5 ]
python
1#main.py 2import test 3print(url_list[0]) 4 5#エラー文 6Traceback (most recent call last): 7 File "Main.py", line 6, in <module> 8 print(url_list[0]) 9NameError: name 'url_list' is not defined
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/16 10:17