Good Infix to Prefix implementation in Python that covers more operators (e.g. <, <=, etc) of a C program?
问题 I have been looking without much luck for an implementation of Python that converts infix to prefix that ranges on a sufficient amount of arithmetic and logic operators and care about its properties on a good python implementation. More specifically I am interested on the operators that would appear on a conditional clause of a C program . (e.g. it would transform a > 0 && b > 1 in prefix. Since I am still newbie to Python I would appreciate if anyone could offer me the implementation or some