Posts by João Pedro Ribeiro • 13 points
1 post
-
1
votes1
answer726
viewsQ: How to not count the "spaces" of a sentence in python
I wonder how to count only the typed letters without space. Even with the strip it counts the spaces. nomed = nome.split() numdi = len(nomed[0]) print('O seu nome tem letras {} e o seu primeiro nome…