Python Forum

Full Version: Press a botton to continue the code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi! Is there any command or function in Python to run the code in steps, ie set breakpoints that continue to press a button or mouse click? I need to create something like this in my code!
Debuggers can run the code in steps. Python has an integrated debugger pdb. See an introduction text here.