我收到此错误
文件“ad.py”,第132行
其他:
^
IndentationError:unindent与任何外部缩进级别都不匹配

我要改变什么?我其实有点新
谢谢

                        print("ACCOUNT WAS BANIDA!")
                        break
                    except UserChannelsTooMuchError:
                        print('userbe many groups.')
                else :
                    ja_adicionado += 1
                    print('Already added:{}'.format(ja_adicionado))
                    continue
            else :
                ja_adicionado += 1
                print("{} is already in the group.".format(user['name']))
                continue
        if user == users[-1]:
            print('LIST FINISHED!')

最佳答案

选项卡中可能混有空格。这将导致该错误。配置您的编辑器以仅将空间用于缩进。

关于python-3.x - 如何修复IndentationError : unindent does not match any outer indentation level,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57815586/

10-16 19:05