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 の関数があるとします。
a = 3 b = 4 c = 5 def add(): d = a+b+c
私に与えるコードオブジェクトなどを取得することは可能ですか:
a = 3 b = 4 c = 5 d = a+b+c