Cómo Comprobar si una PALABRA o FRASE es PALÍNDROMO en PYTHON | Con Funciones | #10

  Рет қаралды 14,476

Programa Resuelto

Programa Resuelto

Күн бұрын

Пікірлер: 15
@ProgramaResuelto
@ProgramaResuelto 2 жыл бұрын
👋Necesitas AYUDA con tus TAREAS? Escríbeme aquí ➡️ wa.link/vshwdy 💡 o MIRA la DESCRIPCIÓN de este video! 💡
@davejohannes7694
@davejohannes7694 2 жыл бұрын
replace lo puedes usar dentro de la misma línea de códigos varias veces, ejemplo: flimpia=frase.replace(" ","").replace("á","a").replace("é","e").replace("í","i").replace("ó","o").replace("ú","u")
@nathaleongamer8907
@nathaleongamer8907 Жыл бұрын
Excelente tutorial Bro
@PekasMakeup
@PekasMakeup 2 жыл бұрын
excelente me encanto entendi perfectamente
@raulsanchezsanchez1190
@raulsanchezsanchez1190 10 ай бұрын
Excelente video Brother...
@dannysbehar5453
@dannysbehar5453 2 жыл бұрын
jejej .reverse() pa terminar rapido alV
@cristianespinosa592
@cristianespinosa592 Жыл бұрын
Reverse solo es para listas, creo...
@edgarpuente3294
@edgarpuente3294 3 күн бұрын
def palindromo(string): """ Comprobar si una palabra o frase es un palíndromo """ string_reversed = "" texto = string.lower() texto = texto.replace(" ", "") texto = texto.replace("á", "a") texto = texto.replace("é", "e") texto = texto.replace("í", "i") texto = texto.replace("ó", "o") texto = texto.replace("ú", "u") for character in texto: string_reversed = character + string_reversed if texto == string_reversed: return True else: return False entrada = input("Ingresa una palabra o frase: ") print(palindromo(entrada)) if palindromo(entrada): print("El texto que ingresaste es un palíndromo") else: print("El texto que ingresaste no es un palíndromo")
@danielroldansayago5878
@danielroldansayago5878 3 ай бұрын
Pues no me funciona... siempre dice que no es palindroma
@ramey9304
@ramey9304 2 жыл бұрын
No funca para palabras que tienen numero de caracteres pares... ejmplo "alla"
@brayandurantolentino7882
@brayandurantolentino7882 Жыл бұрын
A mi si me funciono
@ramey9304
@ramey9304 Жыл бұрын
@@brayandurantolentino7882 Es que tu eres un caso ESPECIAL
@brayandurantolentino7882
@brayandurantolentino7882 Жыл бұрын
@@ramey9304 XD
@YURGUIZDAVIDVALDIVIAHUAMAN
@YURGUIZDAVIDVALDIVIAHUAMAN Жыл бұрын
con la palabra "ainea" no funciona
@gilbert876
@gilbert876 Жыл бұрын
No es palíndroma.
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
Frecuencia de palabras en Python (contar palabras)
6:32
Parzibyte
Рет қаралды 17 М.
Ciclo FOR y WHILE en Python
10:44
DC Control
Рет қаралды 19 М.
Python - Ejercicio 210: Comprobar si una Palabra o Frase es Palíndromo
15:30
Ingeniero John Ortiz Ordoñez
Рет қаралды 22 М.
Algoritmo para saber si una palabra es palíndromo
6:52
ALGORITMODETAREA
Рет қаралды 20 М.
Las FUNCIONES en PYTHON | ¿Para qué sirven y cómo se usan?
17:33
Commit That Line!
Рет қаралды 181 М.
¿Qué es args y kwargs en python?
13:21
Mundo Python
Рет қаралды 11 М.