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.
我开始使用记事本++ 5.1。使用 NppExec 0.4.3.2 Unicode 插件。我需要它来练习python。
我注意到的是 NppExec(甚至记事本)本身有点问题。出于某种原因,这段代码:
word = raw_input("type something") print len(word)
始终输出 len()+1 值。例如,如果我在 raw_input 提示符后输入:“python”,它会打印:7 而不是 6。为什么会这样?
谢谢你。