Pycharm 调试 - 使用手表保存变量
Pycharm debugging - save variable using watches
有没有办法保存手表中的变量名?每次调试时,列表都会变空,我必须输入相同的变量。
当您运行 调试脚本 时,会出现 Watches 按钮。
正在阅读 documentation 关于手表的文章:
While the Evaluate Expression command on the context menu of the Variables pane enables you to see one expression at a time, the Watches pane shows multiple expressions that persist from one debug session to another, until you remove them.
要添加表达式以从一个会话持续到另一个会话,只需单击 + 符号并键入变量名称。然后,当您再次调试时,您将再次看到它被评估,直到您将其删除(使用 - 符号)。
有没有办法保存手表中的变量名?每次调试时,列表都会变空,我必须输入相同的变量。
当您运行 调试脚本 时,会出现 Watches 按钮。
正在阅读 documentation 关于手表的文章:
While the Evaluate Expression command on the context menu of the Variables pane enables you to see one expression at a time, the Watches pane shows multiple expressions that persist from one debug session to another, until you remove them.
要添加表达式以从一个会话持续到另一个会话,只需单击 + 符号并键入变量名称。然后,当您再次调试时,您将再次看到它被评估,直到您将其删除(使用 - 符号)。