def afegir_sufixos(L, s):

    for i in range(len(L)):
        if L[i].islower():
            L[i] = L[i]+s
