在 Pycharm 中运行 Python 程序: 在 Pycharm 中打开项目,选择 Run > Edit Configurations,然后选择您的配置并在 VM options 字段中输入 -W ignore::UserWarning 。

在 Python 脚本中添加代码: 在您的 Python 脚本的末尾添加以下代码:

import os os.system("pause")

  •