Want to write in txt spk like all the cool mobile-toting kids, but tired of figuring out which letters to leave out? No problem — just run your text through the handy to_txt_spk function! >>> def to_txt_spk(words): return "".join(c for c in words if c not in "aeiou") >>> to_txt_spk("Impress your friends with [...]
