以下の関数が test.py に書いてあります。
Python
1def route(start, end , *args) : 2 route_list = [start] 3 route_list += list(args) 4 route_list += [end] 5 str_route = "→".join(route_list) 6 print(str_route)
これをzshで以下のように実行しようとすると以下のようにエラーが出てしまいます。
zsh
1$ python -c "import test; test.route("東京", "福岡", "名古屋", "大阪")" 2Traceback (most recent call last): 3 File "<string>", line 1, in <module> 4NameError: name '東京' is not defined
どうやったら上のようなシチュエーションでうまく実行できますでしょうか。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/07 07:47