繁体   English   中英

IndentationError:预期缩进的块13

[英]IndentationError: expected an indented block 13

这是我的代码

def count (a, e, i, o, u):
    a_length = len(a);
    e_length = len (e);
    i_length = len (i);
    o_length = len (o);
    u_length = len (u);

    total = 0;
    for i in range (a_lenght):
        if(a[i] == u[0]):
        end = i + u_length;

        if (a[i:end] == u):
        total +=1;

这是错误

错误隐藏输出

•  File "submission.py", line 11
    end = i + u_length;
  ^
IndentationError: expected an indented block

您必须在python中的if块上添加缩进。

total = 0;
for i in range (a_lenght):
    if(a[i] == u[0]):
        end = i + u_length;

    if (a[i:end] == u):
        total +=1;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM