Python 字典 dict 獲取索引 轉化為 list

flare zhao發表於2020-12-06

建立字典:

sell_dict = {'688057.SH':36.02,'002132.SZ':3.39}
sell_dict

獲取索引:

sell_dict.keys()

轉化為list:

list(sell_dict.keys())

相關文章