Posts by Daniel Lucas • 11 points
1 post
-
1
votes3
answers230
viewsA: Remove lowercase letters from a list
I hope you help, I could improve but to resolve this issue. def list(phrase): new =[] for i in frase : if i !=i.lower() : print('adicionando:{}'.format(i)) new.append(i) print (new) if name ==…