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 では、この例のように 2 つの変数が同じ値で別々に割り当てられている場合、なぜ 2 つの変数が同じオブジェクトを参照するのでしょうか?
例 :
>>> x = 5 >>> y = 5 >>> x is y >>> True