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.
是否可以在 python 脚本中调用键盘?例如,在 MATLAB 中有写法
% A lot of code "A" ... keyboard % A lot of code "B" ...
在脚本中,因此如果您执行脚本,它将在“键盘”处停止,您可以在 MATLAB-shell 中继续使用由“A”中的代码构建的工作区。Python中有类似的命令吗?
看看Python 调试器;而不是keyboard你会使用:
keyboard
import pdb; pdb.set_trace()
并且调试器停止执行并让您调查程序的状态。