當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Dictionary has_key()用法及代碼示例


字典Python中的數據是一個無序的數據值集合,用於存儲數據值(如Map),與其他僅將單個值作為元素的數據類型不同,Dictionary擁有key : value對。

在Python字典中,如果字典中存在指定的鍵,則has_key()方法返回true,否則返回false。

用法: dict.has_key(key)

參數:

  • key-這是要在字典中搜索的鍵。

返回值:如果字典中有給定的鍵,則方法返回true,否則返回false。

範例1:

# Python program to show working 
# of has_key() method in Dictionary 
  
# Dictionary with three items  
Dictionary1 = { 'A': 'Geeks', 'B': 'For', 'C': 'Geeks' } 
  
# Dictionary to be checked 
print("Dictionary to be checked: ") 
print(Dictionary1) 
  
# Use of has_key() to check 
# for presence of a key in Dictionary 
print(Dictionary1.has_key('A')) 
print(Dictionary1.has_key('For'))

輸出:

Dictionary to be checked: 
{'A': 'Geeks', 'C': 'Geeks', 'B': 'For'}
True
False

範例2:

# Python program to show working 
# of has_key() method in Dictionary 
  
# Dictionary with three items  
Dictionary2 = { 1: 'Welcome', 2: 'To', 3: 'Geeks' } 
  
# Dictionary to be checked 
print("Dictionary to be checked: ") 
print(Dictionary2) 
  
# Use of has_key() to check 
# for presence of a key in Dictionary 
print(Dictionary2.has_key(1)) 
print(Dictionary2.has_key('To'))

輸出:

Dictionary to be checked: 
{1: 'Welcome', 2: 'To', 3: 'Geeks'}
True
False


相關用法


注:本文由純淨天空篩選整理自Akanksha_Rai大神的英文原創作品 Python | Dictionary has_key()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。