print type(a[2])

Τι θα εμφανιστεί;
a = [9, 8, 8.5, '11']
print type(a[2])

<type 'int'>

<type 'float'>

<type 'list'>

<type 'str'>