我的功能是:
def searchstock():
dictionary=calcreturn(dictionize(tickers(openfile()),pairslist()))
inp=raw_input("What is the stock ticker? ")
while True:
try:
dictionary[inp]
break
except KeyError:
print("Ticker not found. Please input again ")
print(inp, dictionary[inp])
try/except 不起作用。我正在尝试查看用户输入是否在字典键中,然后返回键和相应的值
如果 imp 不在字典中,为什么这是一个无限循环?