博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
dict.get()
阅读量:5286 次
发布时间:2019-06-14

本文共 550 字,大约阅读时间需要 1 分钟。

Use dict.get(key[, default]) to assign default values

The code below is functionally equivalent to the original code above, but this solution is more concise.

When get() is called, Python checks if the specified key exists in the dict. If it does, then get() returns the value of that key. If the key does not exist, then get() returns the value specified in the second argument to get().

dictionary = {"message": "Hello, World!"}data = dictionary.get("message", "")print(data)  # Hello, World!

  

转载于:https://www.cnblogs.com/casperwin/p/8266464.html

你可能感兴趣的文章
使用jdbc操作ClickHouse
查看>>
Sentinel基本使用--基于QPS流量控制(二), 采用Warm Up预热/冷启动方式控制突增流量...
查看>>
LinkedList实现基于LRU算法的缓存
查看>>
Alibaba开源组件-分布式流量控制框架sentinel初探
查看>>
分布式系统
查看>>
一致性算法—Paxos、Raft、ZAB
查看>>
Cobar + MySQL 技术验证(li)
查看>>
一致性hash算法及java实现
查看>>
搭建简易Web GIS网站:使用GeoServer+PostgreSQL+PostGIS+OpenLayers3
查看>>
Python 最常见的 170 道面试题解析:2019 最新
查看>>
机器学习算法GBDT的面试要点总结-上篇
查看>>
nodejs+gulp+webpack基础知识
查看>>
nginx代理 tomcat获得真实用户IP
查看>>
开始写下自己的python的cocos2d, pyglet学习
查看>>
最全最新java面试题系列全家桶(带答案)
查看>>
[多平台]pymo – 手机上的 GalGame 引擎
查看>>
signalfx的中间件监控指标so cool
查看>>
Java面试知识点汇总
查看>>
计算广告CTR预估系列(七)--Facebook经典模型LR+GBDT理论与实践
查看>>
推荐系统遇上深度学习(十)--GBDT+LR融合方案实战
查看>>