def break_words(stuff):
    return stuff.split('n')

def sorted_words(t):
    return t.sort()
v = break_words("testing innit")
print(sorted_words(v))