我收到此错误 文件“ 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!')
答案 0 :(得分:0)
选项卡中可能混有空格。这将导致该错误。将编辑器配置为仅将空间用于缩进。
答案 1 :(得分:0)
感谢answear,您知道要解决此错误吗?
SyntaxError:“继续”无法正确循环
行:
else :
ja_adicionado += 1
print("{} is already in the
group.".format(user['name']))
continue
if user == users[-1]:
print('LIST FINISHED!')
答案 2 :(得分:0)
这可能是因为仅在for或while循环内才允许继续。当导入包含循环外的break或Continue的模块时,最新版本的python会引发语法错误。