python字典中添加项

body_daily_close = {
    "mappings": {
        "properties": {
            "trade_date": {
                "type": "keyword"
            }
        }
    }
}
properties = body_daily_close.get("mappings").get("properties")


def daily_close_add_tscodes(tscode):
    properties.setdefault(tscode, {"type": "keyword"})
    print(properties)

 

setdefault 函数可以实现单个项的添加。

添加效果:

python字典中添加项_第1张图片

 

参考:Python 字典(Dictionary)

 

 

 

 

 

 

 

 

python字典中添加项_第2张图片


转载于:https://www.cnblogs.com/betterwgo/p/11563177.html

你可能感兴趣的:(python字典中添加项)