pandas 输出dict

import pandas as pd
d = {'a': [{"col1": 2, "col2": "hello", "col3": True},
                       {"col1": 2, "col2": "wrold", "col3": True}],
     "b": [{"col1": 1, "col2": "helloword", "col3": True}]}

# pandas格式化输出,对dict类型数据进行操作
format_out: str = ""
for k, arr in d.items():
    dic = arr[0]
    merge_columns = list(dic.keys())
    merge_columns.insert(0, k)

    pp = pd.DataFrame.from_records(arr, columns=merge_columns)
    for idx in range(len(arr)):
        pp.iloc[idx,0] = int(idx+1)
        
    pp[k]=pp[k].astype(int)
    
    # 去掉index
    out=pp.to_string(index=False)
    # 将out转dataframe
    df = pd.read_csv(io.StringIO(out), delim_whitespace=True)
    # 再使用tabulate进行grid输出
    grid_out=tabulate(df, headers='keys', tablefmt='grid', showindex=False)
    format_out += grid_out
    format_out +='\n'
    
print(format_out)    
pass

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值