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

a = type([1, 2, 3]) == type(list)

b = [1, 2, 3].__class__ == list.__class__

print(a, b)