我已经创建了一个字典,我正在寻找一个密钥。当我运行程序时,它不会返回任何内容并说它执行时间太长。我看过其他类似的问题,但它们似乎对我不起作用。请帮忙!!
y={'5':'8'}
x=input('hi?')
if x in y:
print 'yeah'
else:
print 'nope'
答案 0 :(得分:1)
使用raw_input()
作为input()
在python 2.7 中评估输入数据:
y={'5':'8'}
x=raw_input('hi?')
if x in y:
print 'yeah'
else:
print 'nope'