Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このコードを実行して、「bar」の値を変数 baz に代入する必要がありますか?
foo = "bar" baz = "bazza" cmd = "baz = foo" node.input(cmd) print("this is foo "..foo) print("this is baz "..baz)
出力は次のようになります。
this is foo bar this is baz bar
私が見逃しているものはありませんか?