I started using Notepad++ 5.1. with NppExec 0.4.3.2 Unicode plugin. I need it for practicing python.
What I noticed is that NppExec (or even Notepad) itself is a bit buggy. For some reason, this code:
word = raw_input("type something")
print len(word)
Always outputs the len()+1 value. For example, if I enter: "python" after the raw_input prompt, it prints: 7 instead of 6. Why is that so?
Thank you.