Помогите найти ошибку

Пользователь
Статус
Оффлайн
Регистрация
21 Окт 2020
Сообщения
332
Реакции[?]
65
Поинты[?]
0
Python:
VOVEL = "AEIOUY"


def main():
    path = input()

    jump = 1
    pos = 0
    lenght = len(path)

    for i, l in enumerate(path):
        if l in VOVEL:
            if i - pos > jump:
                jump = i - pos

            pos = i

    if lenght - pos > jump:
        jump = lenght - pos

    print(jump)


if __name__ == "__main__":
    main()
Пожалуйста, авторизуйтесь для просмотра ссылки.
 
Начинающий
Статус
Оффлайн
Регистрация
7 Июл 2021
Сообщения
3
Реакции[?]
0
Поинты[?]
0
Python:
VOVEL = "AEIOUY"

def main():
path = input()

jump = 1
pos = 0
length = len(path)

for i, l in enumerate(path):
    if l in VOVEL:
        if i - pos > jump:
            jump = i - pos

        pos = i

if length - pos > jump:
    jump = length - pos

print(jump)
if name == "main":
main()
 
Сверху Снизу