摘要: 1.MongoDB简介 MongoDB是一个基于分布式文件存储的数据库,由C++语言编写,旨在为WEB应用提供可扩展的高性能数据存储解决方案。 MongoDB是一个介于关系型数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。 MongoDB将数据存储为一个文档,数据结构 阅读全文
posted @ 2021-02-07 20:41 AmyZYX 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 1.判断list是否为空 方式一: list_temp=[] if len(list_temp): #非空即为真 print('list is not empty') else: print('list is empty') 方式二: list_temp=[] if list_temp: #非空即为 阅读全文
posted @ 2021-02-07 20:24 AmyZYX 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 仓库拉取 git clone XXX 修改仓库链接 $ git config -l # 显示coding列表 $ git config --get remote.origin.url # 返回origin.url git@XXXX $ git remote rename origin old-ori 阅读全文
posted @ 2021-02-07 19:59 AmyZYX 阅读(96) 评论(0) 推荐(0) 编辑