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.
在使用 3.2 的 IDLE 中,每当我在块中输入语句并按 Enter 时,光标都会向前跳转。很多。这没什么大不了的,但很烦人。它与我的代码有关吗?有解决办法吗?
http://www.mediafire.com/view/?kgcg35grt3tllcg
我看到了问题!这里:
def getSystem(): if os.path.exists("C:\"): system = "Windows"
如果您查看突出显示,则("C:\")不起作用。我建议尝试制作它("C:\\"),看看是否可行。当我忘记一个时,我经常遇到这个问题),就像我说for i in range(len(myList),我忘了放最后一个)。每当发生这种情况时,只要知道某处有未闭合的括号即可。
("C:\")
("C:\\")
)
for i in range(len(myList)