Posts by Marcus Vinícius Sousa • 1 point
1 post
- 
		-4 votes9 answers17879 viewsA: How to identify if a string is a palindrome?frase = str.upper(input('Digite uma frase: ')).strip() fraseLimpa = str.replace(frase, ' ','') print('A frase "{}" eh um polindromo?'.format(frase)) if fraseLimpa ==…