I have the following list:
ip= ['a boy called me z there', 'what u doing b over there ', "come w me t the end']
I want to remove all the single letters from each of these strings within the list.
I have tried the following but it does not work:
x = [[w for w in c if (len(w)>1)] for c in ip]
I want to convert my ip
such that I get the following output op
:
op= ['boy called me there', 'what doing over there ', "come me the end']