我在Mongo中有一个集合,我在其中存储了URL,因为我使用以下字段:
在mongo客户端我执行
db.myCollection.find()
然后返回
{"protocol" : "https", "host" : "google.com", "port" : 80}
在使用PyMongo的Python中我执行
for service in myCollection.find():
print service['port']
然后返回
80.0
我的号码是否存储为整数?
使用PyMongo,如何将其作为整数返回而不是浮动?
答案 0 :(得分:4)
答案 1 :(得分:1)
您可以将它转换为整数,如下所示:
for service in myCollection.find():
print int(service['port'])