Python语言学习 1.2
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python语言学习 1.2相关的知识,希望对你有一定的参考价值。
常见操作:
db.collection.insert(),例如:db.users.insert( {‘name‘:‘lig‘,‘age‘:20})
db.collection.find()
db.collection.remove(),例如:db.users.remove({‘name‘:‘zhang‘},{‘age‘:20})
db.collection.update(),例如:db.users.update({‘name‘:‘zhang‘},{$set:{‘age‘:20}})
db.collection.drop()
以上是关于Python语言学习 1.2的主要内容,如果未能解决你的问题,请参考以下文章
《中小学生Python编程入门指南》1.2 Python是什么