24 lines
743 B
Python
24 lines
743 B
Python
# 这是一个示例 Python 脚本。
|
|
|
|
# 按 ⌃R 执行或将其替换为您的代码。
|
|
# 按 双击 ⇧ 在所有地方搜索类、文件、工具窗口、操作和设置。
|
|
|
|
import parser
|
|
import equation_solver
|
|
|
|
# 按间距中的绿色按钮以运行脚本。
|
|
if __name__ == '__main__':
|
|
while True:
|
|
eq = input('请输入化学方程式:')
|
|
if eq == 'exit':
|
|
break
|
|
try:
|
|
eq = parser.parse_equation(eq)
|
|
eq = equation_solver.solve_equation(eq)
|
|
if eq is not None:
|
|
print('化学方程式:', parser.format_equation(eq))
|
|
except Exception as e:
|
|
print(e.args[0])
|
|
|
|
# 访问 https://www.jetbrains.com/help/pycharm/ 获取 PyCharm 帮助
|