这是一个非常奇怪的错误:
以下代码:
a = 'string1'
b = 'string2'
test_dict = {'col1':{a:type(a), b:type(b)},'col2':{a:type(a), b:type(b)}}
pd.DataFrame(test_dict)
在正常的 ipython 控制台中,按预期产生以下内容:
col1 col2
string1 <type 'str'> <type 'str'>
string2 <type 'str'> <type 'str'>
但是在 ipython 笔记本中,应该显示类型的单元格是空的: