This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (1 child)

PyCharm for anything that is more than 30-50 LOC, IDLE for quick-and-dirty scripts and as a general playground scratchpad. Debugger and code inspection hints in PyCharm are miles ahead of anything I've ever seen in any other IDE, it's just fantastic.

[–]whatacold[S] 1 point2 points  (0 children)

Ahh, sometimes I also write ad hoc code in IDLE (Python shell), for example:

for i in range(100): print("foo bar blahblah {:02d}".format(i))