+ 1
Meaning of lvalue and rvalue in python
2 Respuestas
+ 3
an lvalue is an expression to which the unary & operator can be applied, whereas an rvalue is an expression to which the unary & operator can not be applied. (This is not entirely true in C++ if you overload said operator, but that's probably very bad practice.)
[by fred overflow]
0
please check this link:
https://msdn.microsoft.com/en-us/library/f90831hc.aspx
it's for c++, but I think it will clarify