当前位置: 首页>>代码示例>>Python>>正文


Python Map.get方法代码示例

本文整理汇总了Python中Map.Map.get方法的典型用法代码示例。如果您正苦于以下问题:Python Map.get方法的具体用法?Python Map.get怎么用?Python Map.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Map.Map的用法示例。


在下文中一共展示了Map.get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: main

# 需要导入模块: from Map import Map [as 别名]
# 或者: from Map.Map import get [as 别名]
def main():
    # Create a map
    map = Map()
    map.put("Smith", 30)
    map.put("Anderson", 31)
    map.put("Lewis", 29)
    map.put("Cook", 29)
    map.put("Cook", 129)
    
    print("Entry set in map: " + str(map.items()))
    print("The age for Lewis is " + str(map.get("Lewis")))
    print("Is Smith in the map? " + str(map.containsKey("Smith")))
    print("Is Johnson in the map? " + 
         str(map.containsKey("Johnson")))
    print("Is value 30 in the map? " + str(map.containsValue(30)))
    print("Is value 33 in the map? " + str(map.containsValue(33)))
    print("Is age 33 in the map? " + str(map.containsValue(33)))
    print("All values for Cook? " + str(map.getAll("Cook")))
    print("keys are " + str(map.keys()))
    print("values are " + str(map.values()))

    map.remove("Smith")
    print("The map is " + map.getTable())

    map.clear()
    print("The map is " + map.getTable())
开发者ID:EthanSeaver,项目名称:Python-Projects,代码行数:28,代码来源:TestMap.py

示例2: Map

# 需要导入模块: from Map import Map [as 别名]
# 或者: from Map.Map import get [as 别名]
__author__ = 'onurbaran'

from Map import Map

user = Map("user:12")
user.add("email", "[email protected]")
user.add("name", "onur")
user.add("city", "ist")

print user
print len(user)

user.remove("city")
user.add("job", "developer")
print user.get("job")
print user
开发者ID:onurbaran,项目名称:py-hazelcast,代码行数:18,代码来源:test.py


注:本文中的Map.Map.get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。