summaryrefslogtreecommitdiff
path: root/progs/a491.py
blob: d4be952b9afe8b3dbdfa106c3854d4b284f3d853 (plain)
1
2
3
4
5
6
7
def long_words(n, str):
    word_len = []
    txt = str.split(" ")
    for x in txt:
        if len(x) > n:
            word_len.append(x)
    return word_len