Aliven888
python dict 字典的修改操作 修改键对应的值
阅读 96
2023-03-15
# 定义字典d = {"age": 16}# 修改值print("根据键修改值")d["age"] = 20print(d)
相关推荐
精彩评论(0)