palindrome=[] for i in range(100,1000): for j in range(100,1000): a=str(i*j) if len(a)%2 != 0: continue else: half=len(a) // 2; first_half=a[0:half] second_half=a[half:] second_half_rev= second_half[::-1] if first_half == second_half_rev: palindrome....
No responses yet.