在python中,可以使用in
關鍵字來判斷一個key是否存在于map中。示例代碼如下:
my_map = {'a': 1, 'b': 2, 'c': 3}
if 'a' in my_map:
print('Key "a" exists in the map.')
else:
print('Key "a" does not exist in the map.')
以上代碼將輸出Key "a" exists in the map.
,因為map中存在key為'a'
的鍵。如果要判斷一個key是否不存在于map中,可以使用not in
關鍵字。