上一页 1 2 3 4 5 6 7 8 ··· 109 下一页
摘要: mysql script: drop table `vuedustu`; CREATE TABLE `vuedustu` ( `stuId` int(11) NOT NULL AUTO_INCREMENT comment'学生编号', `stuname` varchar(255) DEFAULT N 阅读全文
posted @ 2024-08-07 20:17 ®Geovin Du Dream Park™ 阅读(4) 评论(0) 推荐(0) 编辑
摘要: mysql: select * from tutorials; # CREATE TABLE IF NOT EXISTS `tutorials` (`id` INTEGER NOT NULL auto_increment , `title` VARCHARuserinfos(255), `descr 阅读全文
posted @ 2024-08-07 18:04 ®Geovin Du Dream Park™ 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 先安装路由包: npm install vue-router route/index.js import { createRouter, createWebHistory ,createWebHashHistory} from 'vue-router' import HomeView from '. 阅读全文
posted @ 2024-08-01 18:32 ®Geovin Du Dream Park™ 阅读(3) 评论(0) 推荐(0) 编辑
摘要: https://www.elby.ch/en/products/vcd.html Virtual CloneDrive --在windows PowerShell 管理身份运行 Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Loca 阅读全文
posted @ 2024-07-27 23:46 ®Geovin Du Dream Park™ 阅读(121) 评论(0) 推荐(0) 编辑
摘要: #去重 A = ['geovindu','刘杰','江山','河水','刘杰','geovindu','张三','李五'] B = [] for i in A: if i not in B: B.append(i) print(B) C = set(A) print(list(C)) # 移动位置 阅读全文
posted @ 2024-07-06 19:16 ®Geovin Du Dream Park™ 阅读(4) 评论(0) 推荐(0) 编辑
摘要: tracert 实用程序可以用于分析互联网上的数据包传输路径,有助于检测在路由中连接变慢或无响应的位置。执行 tracert 命令后,会显示每个数据包沿途往返的时间以及跃点的 IP 地址或主机名。通过分析输出,可以对有问题的路由节点有一个大致的了解。 Tracert 参数说明 -d 不将地址解析成主 阅读全文
posted @ 2024-07-04 06:32 ®Geovin Du Dream Park™ 阅读(40) 评论(0) 推荐(0) 编辑
摘要: # python slicing 和函数range 差不多, 起始值,最后值,步长值 a='abcdefghijklmnopqrstuvwxyz' print(a[:],end=' \n') # abcdefghijklmnopqrstuvwxyz print(a[:5], end=' \n') # 阅读全文
posted @ 2024-07-03 08:53 ®Geovin Du Dream Park™ 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 先配置python开发环境 1.在搜索栏输入“>" 或是用快捷组合键ctrl+shift+P键 就会显示”>",再输入"python:" 选择已经安装好的python的版本,选定至当前项目中,都是按回车 2 terminal 下输入相关命令行操作,选进入虚拟环境的的文件夹下 cd .venv/scr 阅读全文
posted @ 2024-07-02 20:16 ®Geovin Du Dream Park™ 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 1.设断点(行号对应的红色点,在需要设置断点的代码行与行号之间鼠标点击即可以设置) 2.shift+F9,或 alt+shift+f9 选择文件 或是在菜单 Run->debug "main" 或是在菜单Run->debug 选择文件 (鼠标光标放在设置第一个断点开始的地方) 3再按F8. 查看一行 阅读全文
posted @ 2024-06-30 06:23 ®Geovin Du Dream Park™ 阅读(14) 评论(0) 推荐(0) 编辑
摘要: # encoding: utf-8 # 版权所有 2024 涂聚文有限公司 # 许可信息查看: # 描述: # Author : geovindu,Geovin Du 涂聚文. # IDE : PyCharm 2023.1 python 3.11 # Datetime : 2024/6/22 20: 阅读全文
posted @ 2024-06-22 14:52 ®Geovin Du Dream Park™ 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 109 下一页