Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试制作一个PEMDAS求解器,用户可以在其中输入 PEMDAS 问题。例如,他们会输入 4(4 + 2) - 5,程序会为他们解决。是否有任何代码可以让 python 解决用户输入的输入。
就像是:
problem = input() solve(problem) print(problem)
我显然知道“解决”不是python中的真正命令。