I would like to remove any single letter from a string in python.
For example:
input: \'z 23rwqw a 34qf34 h 343fsdfd\' output: \'23rwqw 34qf34 343fsd
>>> ' '.join( [w for w in input.split() if len(w)>1] ) '23rwqw 34qf34 343fsdfd'