generate functionTue, 16 May 2023

ingresar un numero de tres crifras  y hallar si es capicua o no

def capicua(a): c = str(a) return c == c[::-1] print(capicua(123)) print(capicua(121))

Want to kickstart your project?Use the new AI Studio to create your code