Which Python IDE can run my script line-by-line?

后端 未结 15 800
小鲜肉
小鲜肉 2021-02-01 02:38

I wouldn\'t call myself programmer, but I\'ve started learning Python recently and really enjoy it.

I mainly use it for small tasks so far - scripting, text processing,

15条回答
  •  温柔的废话
    2021-02-01 02:51

    The Pythonwin IDE has a built-in debugger at lets you step through your code, inspect variables, etc.

    http://starship.python.net/crew/mhammond/win32/Downloads.html

    http://sourceforge.net/projects/pywin32/

    The package also includes a bunch of other utility classes and modules that are very useful when writing Python code for Windows (interfacing with COM, etc.).

    It's also discussed in the O'Reilly book Python Programming On Win32 by Mark Hammond.

提交回复
热议问题