fork download
  1. from itertools import product
  2.  
  3. palindromes = (i*j for i, j in product(range(100, 1000), repeat=2) if str(i*j) == str(i*j)[::-1])
  4.  
  5. print("O maior palíndromo encontrado foi", max(palindromes))
Success #stdin #stdout 0.38s 28384KB
stdin
Standard input is empty
stdout
O maior palíndromo encontrado foi 906609