本文整理汇总了Python中Map.Map.containsKey方法的典型用法代码示例。如果您正苦于以下问题:Python Map.containsKey方法的具体用法?Python Map.containsKey怎么用?Python Map.containsKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Map.Map
的用法示例。
在下文中一共展示了Map.containsKey方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from Map import Map [as 别名]
# 或者: from Map.Map import containsKey [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())