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.
シンプルな python シェルを作成したいと思います。だから今、私はコードの実行に行き詰まっています。問題は、カスタム グローバルexecで実行する方法はありますか? ありがとう
exec
次のようにカスタム グローバル ディクショナリを渡すことができます。
a, b = 1, 2 exec('print(a+b)', {'a': 5, 'b': 5}) # prints 10
参考:exec声明