SublimeREPL无法正确显示

时间:2016-11-16 22:47:58

标签: python sublimerepl

我正在使用Sublime3来编写和编译python代码 出于某种原因,SublimeREPL没有正确显示标签,但是cmd确实显示了标签。为什么这样,我该如何解决?

    parantezeDeschise=0 # counts '('
    locatieParanteze=[] # location of '('
    for i in range(len(self.Propozitie)):
        print str(i+1)+'.',
        if self.Propozitie[i]=='(': # for every '(' there should be a TAB
            print (parantezeDeschise * '\t'),self.Propozitie[i],'cere formula compusa'
            parantezeDeschise+=1
            locatieParanteze.append(i)
        elif self.Propozitie[i]==')': # every ')' removes a TAB
            parantezeDeschise-=1
            print (parantezeDeschise * '\t'),self.Propozitie[i],'rezolva formula compusa [',locatieParanteze.pop()+1,']'
        else:
            print (parantezeDeschise * '\t'),self.Propozitie[i]

enter image description here

1 个答案:

答案 0 :(得分:0)

您的SublimeREPL是否可以配置为将标签显示为空格?屏幕右下方是否显示如下图所示的内容?

enter image description here

如果是,请单击“Spaces”所在的位置。这应该会显示以下上下文菜单。

enter image description here

只需取消选择“缩进使用空格”,然后继续使用SublimeREPL正确显示标签。