TQC+ 程式語言Python 710 詞典搜尋
題目說明:
請撰寫一程式,為一詞典輸入資料(以輸入鍵值”end”作為輸入結束點,詞典中將不包含鍵值”end”),再輸入一鍵值並檢視此鍵值是否存在於該詞典中。
輸入與輸出會交雜如下,輸出的部份以粗體字表示
Key: 123-4567-89
Value: Jennifer
Key: 987-6543-21
Value: Tommy
Key: 246-8246-82
Value: Kay
Key: end
Search key: 246-8246-82
True
Value: Jennifer
Key: 987-6543-21
Value: Tommy
Key: 246-8246-82
Value: Kay
Key: end
Search key: 246-8246-82
True
程式碼:
Dict = {}
while True:
key = input("Key: ")
if key == 'end':
break
value = input("Value: ")
Dict[key] = value
search = input("Search key: ")
print(search in Dict)