The compiler.parse() function in python give me the compiled code of an expression.
For ex:
compiler.parse('a/b/c')
generates
Module(None, Stmt([Discard(Div((Div((Name('a'), Name('b'))), Name('c'))))]))
How can I do the reverse of it; meaning given the compiled statement how can I get a/b/c?
PS :: I know that compiler module is deprecated in python2.7 and python3.0 but it seems to be the only thing for my work!