我有一个列表和两个函数。一个是搜索功能,另一个显示搜索到的内容。
list = {
1 : ("1200", "Walnut St", 919822),
2: ("1300", "Adam Dr", 919823),
3: ("1200", "Rodeo Dr", 919823),
}
def search(word_searched):
#prints list of key that contains word_searched
def show(list_ID):
#do stuff
我的问题是,如果我搜索“1200”,我如何让它返回:
1
3