Что выведет код?

f = lambda x: isinstance(x, int)

print(f(1), f(1.0), f(True), f(1j))