作者:潘佳锐_340 | 来源:互联网 | 2023-05-20 16:02
我试图在我的mongo db中查询python2.7中的项目
output = collection.find_one({ $and : [{'name' : data['name']},{'phone_1' : data['phone_1']}]})
当我尝试运行脚本python告诉我
File "./test.py", line 113
output = collection.find_one({ $and : [{'name' : data['name']},{'phone_1' : data['phone_1']}]})
^
SyntaxError: invalid syntax
我检查了手册和mongo的版本.我已经安装了mongodb 2.0.6,所以上面的语法应该没问题.我错过了什么吗?
1> alecxe..:
把它放到引号中:
output = collection.find_one({
'$and': [
{'name': data['name']},
{'phone_1': data['phone_1']}
]
})