texto = " Olá, Mundo! " print(len(texto)) # Saída: 13 print(texto.strip()) # Saída: 'Olá, Mundo!' print(texto.lower()) # Saída: 'olá, mundo!'