sublime text下 Python 问题:TabError: inconsistent use of tabs and spaces in indentation

  File "G:\ST\Python\code.py", line 52
    while left < right and (nums[left] == nums[left+1]):
                                                       ^
TabError: inconsistent use of tabs and spaces in indentation

怎么都搞不定,原因是自己偷懒了,从LeetCode上面复制了头部,尾部是自己手写的,方案就是全部推倒,重来,全部手写。

class Solution:
    def threeSum(self, nums):
        """
        :type nums: List[int]
        :rtype: List[List[int]]
        """

网友方案,检查subline的空格制表显示就可以清楚的显示出自己是否真的空格了。

操作:

在sublime text中Preferences->Settings-User中添加以下代码:

,
"draw_white_space": "all"

注意:如果你的设置里面还有其他东西,你就需要添加逗号让两个不同的设置分割开来

sublime text 会显示横线和点出来

有点,有横线,运行不正常

sublime text下 Python 问题:TabError: inconsistent use of tabs and spaces in indentation_第1张图片

全部是点运行正常

sublime text下 Python 问题:TabError: inconsistent use of tabs and spaces in indentation_第2张图片

全部是横线,运行正常

sublime text下 Python 问题:TabError: inconsistent use of tabs and spaces in indentation_第3张图片

 

认识你是我们的缘分,同学,等等,学习人工智能,记得关注我。

 

微信扫一扫
关注该公众号

《湾区人工智能》

你可能感兴趣的:(Python报错,sublime,text)