07 2023 档案

摘要:## 复盘笔记 #### 1 知识点 ##### 1.1 开根号、幂运算 **平方根** ![image-20230729103847040](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230729173833836-1385 阅读全文
posted @ 2023-07-29 17:19 凯璇 阅读(82) 评论(0) 推荐(0) 编辑
摘要:#### 1 错误及解决 编译长字符串时运行结果出现如下问题 **错误的运行结果**: ![image-20230726193530325](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230726221914047-10804 阅读全文
posted @ 2023-07-26 19:55 凯璇 阅读(28) 评论(0) 推荐(0) 编辑
摘要:## Python学习(二) #### 1 Python 集合 ##### 1.1 集合(Set) 集合是无序和无索引的集合。在 Python 中,集合用花括号编写。 ![image-20230715160050231](https://img2023.cnblogs.com/blog/323229 阅读全文
posted @ 2023-07-26 19:31 凯璇 阅读(11) 评论(0) 推荐(0) 编辑
摘要:#### 语言结构学习 ![image-20230721151132572](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230721203616250-1978613314.png) ![image-2023072116123 阅读全文
posted @ 2023-07-21 20:36 凯璇 阅读(11) 评论(0) 推荐(0) 编辑
摘要:#### 7.20学习笔记 **类的复用:可以通过创建多个对象来使用同一个类,避免重复编写相似的代码。** **继承:子类可以继承父类的属性和方法,从而实现代码的重用和扩展性。** ![image-20230720152429124](https://img2023.cnblogs.com/blog 阅读全文
posted @ 2023-07-20 19:42 凯璇 阅读(28) 评论(0) 推荐(0) 编辑
摘要:## Django入门学习1 ### 搭建web站点及业务框架 ##### 1 安装Django 方法: 1 终端输入命令: pip install django 2在python解释器中添加,步骤如下 ![image-20230718154142662](https://img2023.cnblo 阅读全文
posted @ 2023-07-20 19:41 凯璇 阅读(5) 评论(0) 推荐(0) 编辑
摘要:## Django入门学习1 ### 搭建web站点及业务框架 ##### 1 安装Django 方法: 1 终端输入命令: pip install django 2在python解释器中添加,步骤如下 ![image-20230718154142662](https://img2023.cnblo 阅读全文
posted @ 2023-07-18 23:58 凯璇 阅读(6) 评论(0) 推荐(0) 编辑
摘要:Djangovue 建立过程: #### 1. 创建 Django 项目 新建一个django项目 ![image-20230719164051385](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230720180415860 阅读全文
posted @ 2023-07-18 23:58 凯璇 阅读(41) 评论(0) 推荐(0) 编辑
摘要:### sourcetree ##### 1 克隆 ![image-20230717194013937](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230718000304593-691088633.png) ![image- 阅读全文
posted @ 2023-07-18 00:04 凯璇 阅读(44) 评论(0) 推荐(0) 编辑
摘要:![image-20230713120429318](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230715150104699-1934252479.png) ![image-20230713120457549](https: 阅读全文
posted @ 2023-07-15 21:33 凯璇 阅读(63) 评论(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 凯璇 阅读(46) 评论(0) 推荐(0) 编辑
摘要:## Python学习 #### 11 Python 列表 ##### 11.1 Python 集合(数组) Python 编程语言中有四种集合数据类型: - **列表(List)** 是一种**有序和可更改**的集合。允许**重复**的成员。 - **元组(Tuple)** 是一种**有序且不可更 阅读全文
posted @ 2023-07-15 21:29 凯璇 阅读(7) 评论(0) 推荐(0) 编辑
摘要:亿图图示 https://www.jb51.net/softs/785592.html#downintro2 ![image-20230713124610121](https://img2023.cnblogs.com/blog/3232296/202307/3232296-202307151141 阅读全文
posted @ 2023-07-15 11:42 凯璇 阅读(34) 评论(0) 推荐(0) 编辑
摘要:## Python学习2 #### 6 Python 数值类型 Python 中有三种数值类型: - `int` 1 - `float` 1.1 - `complex` 1j # j为复数虚部 **类型转换** ![image-20230715094724127](https://img2023.c 阅读全文
posted @ 2023-07-15 11:27 凯璇 阅读(11) 评论(0) 推荐(0) 编辑
摘要:## Python学习1 简单输出语句可直接使用”print“进行输出 ![image-20230714160330700](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230715112511577-2141622102.pn 阅读全文
posted @ 2023-07-15 11:26 凯璇 阅读(14) 评论(0) 推荐(0) 编辑
摘要:## 1.python特点 ​ Python具有代码简单、学习难度低、语法清楚、功能库丰富等优势,同样功能的代码,Python代码数量只有C或Java的1/5,甚至1/10。例:打印Hello World,C语言需要6行,Java需要5行,Python只需要1行。 ## 2.python相关概念 第 阅读全文
posted @ 2023-07-12 14:37 凯璇 阅读(46) 评论(0) 推荐(0) 编辑
摘要:## 一、Sourcetree 1.使用SourceTree之前必须要先安装Git和sourceTree(gitee免费版最多可5个成员)。 2.加入代码仓,需申请邀请链接。 3.加入代码仓,成为的的项目开发成员之后,首先将该远程仓clone(克隆)到自己本地,作为自己的本地仓,“5-27-dq”这 阅读全文
posted @ 2023-07-12 14:36 凯璇 阅读(49) 评论(0) 推荐(0) 编辑
摘要:#### 1.origin安装破解成功 #### 2.Splayer安装成功并可投入使用 ![image-20230712091825350](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230715213216633-1828 阅读全文
posted @ 2023-07-12 14:36 凯璇 阅读(302) 评论(0) 推荐(0) 编辑
摘要:## pycharm ###### 1.”enter+shift“ 一键格式化代码 ![image-20230709092744516](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230710180139605-2024753 阅读全文
posted @ 2023-07-10 18:02 凯璇 阅读(8) 评论(0) 推荐(0) 编辑
摘要:1.远程控制设备 2.Quicke 可设定快捷方式打开,功能多,其中截图/图片处理功能举例如下 ![image-20230708164115436](https://img2023.cnblogs.com/blog/3232296/202307/3232296-20230708170210477-6 阅读全文
posted @ 2023-07-08 17:02 凯璇 阅读(17) 评论(0) 推荐(0) 编辑
摘要:# 目录 ## 1.typora (1)安装破解typora (2)配置并尝试利用typora写笔记 (3)注册博客园 (4)上传笔记 ## 2.python+pycharm (1)安装python3.10版本 (2)安装破解pycharm专业版 (3)环境配置、解释器 (4)插件安装 1.typo 阅读全文
posted @ 2023-07-08 16:37 凯璇 阅读(29) 评论(0) 推荐(0) 编辑
摘要:带娃大无大无大无 阅读全文
posted @ 2023-07-06 22:22 凯璇 阅读(8) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示