def isEven(val):
    print(F'processing {val}' )
    return (val % 2) == 0

huge_range = range(1,10**24+1)

if any(map(isEven, huge_range)):
  print('Some even found')
else:
  print('No even found')

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: