What does represents the hexadecimal integer showed on print\repr in python?
        Posted  
        
            by systempuntoout
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by systempuntoout
        
        
        
        Published on 2010-03-31T22:04:48Z
        Indexed on 
            2010/03/31
            22:13 UTC
        
        
        Read the original article
        Hit count: 167
        
In an interactive session like the following one:
>>> f=open('test.txt','w')
>>> f
<open file 'test.txt', mode 'w' at 0x6e610>
what does 0x6e610 represents and what could i do with that hexadecimal number in python?
© Stack Overflow or respective owner