В [8]: str('2'.__class__)
Выход [8]: "<type 'str'>"
В [9]: str(len.__class__)
Выход [9]: "<type 'builtin_function_or_method'>"
В [10]: str(4.6.__class__)
Выход [10]: "<type 'float'>"
Или, как было указано ранее,
В [11]: 4.6.__class__.__name__
Выход [11]: 'float'