is there a way to know, during run-time, a variable's name (from the code) ? or do var names forgotten during compilation (byte-code or not) ?
e.g.
>>> vari = 15 >>> print vari.~~name~~() 'vari'
note: i'm talking about plain data-type variables (int, str, list...)