python字典 dict 转成DataFrame

python字典 dict 转成DataFrame

  • python字典 dict 转成DataFrame

python字典 dict 转成DataFrame


buy_sell_info = {
    'symbol': '000121',
    'date': '2022-8-1',
    'action': '1'
}
buy_sell_info = pd.DataFrame([buy_sell_info])

只需要把元组对象装到list的符号 [] 中,再传入 DataFrame 作为参数

你可能感兴趣的:(python基础,python,pandas)