简体   繁体   中英

IndentationError: expected an indented block 13

Here is my code

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;

here is the error

ERROR Hide output

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

You must add indentation to if blocks in python.

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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