generate functionTue, 16 May 2023

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

def is_capicua(x): return x == x[::-1] for i in range(100, 999): if is_capicua(str(i)): print(i)

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