TQC+ 程式語言 Python 3 _ 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


程式碼:
dict1 = {}

key1 = input("Key: ")
while key1 != "end":
    dict1[key1]=input("Value: ")
    key1 = input("Key: ")

print ( input("Search key: ") in dict1.keys())

沒有留言:

張貼留言