为什么 pycharm 中的 'in' 运算符使我失败?
Why is the 'in' operator in pycharm failing me?
新手 Python,也许这是错误的地方。
非常感谢。
fff = dict()
fff["Stan"] = 1
fff["Dave"] = 1
fff["Scott"] = 1
print (fff)
"John" in fff
当我运行代码时,结果是这样的:
{'Stan': 1, 'Dave': 1, 'Scott': 1}
进程已完成,退出代码为 0
需要 False
,但它忽略了最后一行
添加另一个 print
:将 "John" in fff
替换为 print("John" in fff)
。
其他意见:使用更好的变量名并将fff = dict()
替换为fff = {}
。
新手 Python,也许这是错误的地方。
非常感谢。
fff = dict()
fff["Stan"] = 1
fff["Dave"] = 1
fff["Scott"] = 1
print (fff)
"John" in fff
当我运行代码时,结果是这样的:
{'Stan': 1, 'Dave': 1, 'Scott': 1}
进程已完成,退出代码为 0
需要 False
,但它忽略了最后一行
添加另一个 print
:将 "John" in fff
替换为 print("John" in fff)
。
其他意见:使用更好的变量名并将fff = dict()
替换为fff = {}
。