摘要: ## Python学习(二) #### 1 Python 集合 ##### 1.1 集合(Set) 集合是无序和无索引的集合。在 Python 中,集合用花括号编写。 ![image-20230715160050231](https://img2023.cnblogs.com/blog/323229 阅读全文
posted @ 2023-07-26 19:31 凯璇 阅读(15) 评论(0) 推荐(0)
摘要: #### 语言结构学习 ![image-20230721151132572](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230721203616250-1978613314.png) ![image-2023072116123 阅读全文
posted @ 2023-07-21 20:36 凯璇 阅读(19) 评论(0) 推荐(0)
摘要: #### 7.20学习笔记 **类的复用:可以通过创建多个对象来使用同一个类,避免重复编写相似的代码。** **继承:子类可以继承父类的属性和方法,从而实现代码的重用和扩展性。** ![image-20230720152429124](https://img2023.cnblogs.com/blog 阅读全文
posted @ 2023-07-20 19:42 凯璇 阅读(33) 评论(0) 推荐(0)
摘要: ## Django入门学习1 ### 搭建web站点及业务框架 ##### 1 安装Django 方法: 1 终端输入命令: pip install django 2在python解释器中添加,步骤如下 ![image-20230718154142662](https://img2023.cnblo 阅读全文
posted @ 2023-07-20 19:41 凯璇 阅读(17) 评论(0) 推荐(0)
摘要: Djangovue 建立过程: #### 1. 创建 Django 项目 新建一个django项目 ![image-20230719164051385](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230720180415860 阅读全文
posted @ 2023-07-18 23:58 凯璇 阅读(55) 评论(0) 推荐(0)
摘要: ## Django入门学习1 ### 搭建web站点及业务框架 ##### 1 安装Django 方法: 1 终端输入命令: pip install django 2在python解释器中添加,步骤如下 ![image-20230718154142662](https://img2023.cnblo 阅读全文
posted @ 2023-07-18 23:58 凯璇 阅读(18) 评论(0) 推荐(0)
摘要: ### sourcetree ##### 1 克隆 ![image-20230717194013937](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230718000304593-691088633.png) ![image- 阅读全文
posted @ 2023-07-18 00:04 凯璇 阅读(63) 评论(0) 推荐(0)
摘要: ![image-20230713120429318](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230715150104699-1934252479.png) ![image-20230713120457549](https: 阅读全文
posted @ 2023-07-15 21:33 凯璇 阅读(68) 评论(0) 推荐(0)
摘要: #### 安装vue及脚手架 ##### 1.安装vue.js npm install vue -g 或者 cnpm install vue -g 查看安装的vue信息: npm info vue 或者 cnpm info vue ![image-20230715211634838](https:/ 阅读全文
posted @ 2023-07-15 21:29 凯璇 阅读(51) 评论(0) 推荐(0)
摘要: ## Python学习 #### 11 Python 列表 ##### 11.1 Python 集合(数组) Python 编程语言中有四种集合数据类型: - **列表(List)** 是一种**有序和可更改**的集合。允许**重复**的成员。 - **元组(Tuple)** 是一种**有序且不可更 阅读全文
posted @ 2023-07-15 21:29 凯璇 阅读(33) 评论(0) 推荐(0)