這篇文章主要介紹了python中查看變量內存地址的方法,涉及Python中id使用技巧,需要的朋友可以參考下
本文實例講述了python中查看變量內存地址的方法。分享給大家供大家參考。具體實現方法如下:
這裡可以使用id
?
1 2 3 4 5 >>> print id.__doc__ id(object) -> integer Return the identity of an object. This is guaranteed to be unique among simultaneously existing objects. (Hint: it's the object's memory address.) >>>希望本文所述對大家的Python程序設計有所幫助。