generate functionTue, 16 May 2023

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

def capicua(numero): if str(numero) == str(numero)[::-1]: return True else: return False capicua(121)

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