我需要幫助,在raw_input
的一行中爲字典添加名稱和電話號碼。它應該看起來像這樣:add John 123
(添加名字約翰與數字123)。這裏是我的代碼:Python - 交互式電話簿
def phonebook():
pb={}
while True:
val,q,w=raw_input().split(" ")
if val=='add':
if q in pb:
print
print "This name already exists"
print
else:
pb[q]=w #lägger till namn + nummer i dictionary
if val=='lookup':
if q in pb:
print
print pb[q]
print
else:
print "Name is not in phonebook"
print
我得到解壓縮錯誤。有小費嗎?還有另一種方法可以做到嗎?
謝謝你,非常有幫助! –