V
Size: a a a
V
БГ
БГ
py3
iterable = [300, 2, 12, 44, 1, 1, 4, 10, 7, 1, 78, 123, 55]
hyakhuyak_i_v_prodakshen = (item for index, item in enumerate(iterable) if item>iterable[index-1])
print ([*hyakhuyak_i_v_prodakshen])
[300, 12, 44, 4, 10, 78, 123]
БГ
ДК
БГ
БГ
AE
py3
iterable = [300, 2, 12, 44, 1, 1, 4, 10, 7, 1, 78, 123, 55]
hyakhuyak_i_v_prodakshen = (item for index, item in enumerate(iterable) if item>iterable[index-1])
print ([*hyakhuyak_i_v_prodakshen])
[300, 12, 44, 4, 10, 78, 123]

V
БГ
ДК
БГ
БГ
БГ
БГ
V
БГ
БГ