I have a list "values" it has the types information i just to print it properly
in ipython notebook i am trying to print
case1:
> print values
[<type 'str'>, <type 'str'>, <type 'str'>, <type 'str'> <type 'int'>]
case2:but if i simply do
>values
[str, str, str, str, int]
Ultimately i just case2 way of printing and tried to do it many ways but not getting it.