On 2006-08-09 07:54:21, Slawomir Nowaczyk wrote:

> Nope. Equivalence table can look like this:
> 
>        Python                             C
> variable:                a          variable:              a
> textual representation: "a"         address operator:     &a
> id of object:           id(a)       dereference operator: *a
> 
> Also, notice, that "id(a)" does not really "identify" a variable. It
> only identifies *object* which is bound to this variable. Both in
> Python and in C.

Rests one question: what is the value of the variable? In Python, it would
be the result of "a". In C, it would be the result of ...? 

Gerhard

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to