使用恐慌 CODA 的 Python 缩进问题
在 Panics coda IDE 中编写 python 时,还有其他人遇到大量缩进语法错误吗?我已经得到了很多这样的信息,只要调整我的代码似乎就可以消除错误。漏洞?
Any one else getting lots of indentation syntax errors when writing python in panics coda IDE? Ive been getting a lot of these, and just shuffling my code around seems gets rid of the error. Bug?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这通常是由于制表符和空格之间的切换造成的。我已将不可见字符颜色(首选项 -> 颜色)设置为在页面上可见,以便我可以查看是否使用制表符或空格。 Python 标准是使用 4 个空格一个选项卡。我也将其设置为默认值(首选项 -> 编辑器,然后取消选中“使用选项卡”并将选项卡宽度设置为 4)。最后,您可以通过选择文本然后转到“文本”菜单并选择“取消制表符”来清理在制表符和空格之间切换或使用制表符而不是空格的文件。
This is usually due to shifting between tabs and spaces as tabs. I've set my invisible character color (Preferences -> Colors) to be visible on the page so that I can see if I'm using tabs or spaces. The Python standard is to use 4 spaces for a tab. I've set this as the default as well (Preferences -> Editor then uncheck 'Use tabs' and set tab width to 4). Finally, you can clean up a file that switches between tabs and spaces or is using tabs instead of spaces by selecting the text and then going to the Text menu and selecting Detab.