generate functionTue, 16 May 2023

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

def capicua(num): x = num // 100 y = num % 10 if x == y: return True else: return False

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