O erro que aparece é:
lista = ['Guilherme', 28, True, '18']
for elemento in lista:
print(f'O elemento {elemento} é do tipo: ', type(elemento))
TypeError Traceback (most recent call last) in () 2 3 for elemento in lista: ----> 4 print(f'O elemento {elemento} é do tipo: ', type(elemento)) 5 6
TypeError: 'int' object is not callable