一、Python包含以下函数: 1、len(list) 功能:返回列表元素个数 语法:len(list) 参数:要计算元素个数的列表 list1 = ['Google', 'Runoob', 'Taobao'] print (len(list1)) # 输出:3 list2=list(range(5 ...
分类:
编程语言 时间:
2020-12-05 10:50:33
阅读次数:
8
经过一段时间的数据结构与算法的学习,和学习了前人的经验,为了更好的指导自己(希望也能帮助到别人)之后数据结构与算法的学习,总结一下数据结构与算法学习的方法。以及推荐大家看看一套学习教程,有助于快速入门:https://4m.cn/7MHVd 一、记住数据结构,记住算法思想(是什么) 我觉得这个是数据 ...
分类:
编程语言 时间:
2020-12-04 11:16:07
阅读次数:
8
1.数据库 1.登陆数据库 使用windows+r健,然后输入cmd,进入命令框,连接用户,sqlplus+用户名/密码 把会话环境改成中文模式: alter session set nls_language='simplified chinese'; 把会话环境改成英文模式: alter sess ...
分类:
数据库 时间:
2020-11-30 15:52:50
阅读次数:
8
<div class="media" th:each="question:${questions}"> <div class="media-left"> <a href="#"> <img class="media-object img-rounded" th:src="${question.use ...
分类:
其他好文 时间:
2020-11-17 12:49:18
阅读次数:
10
安装中文插件 Settings--> Plugins --> 搜索 Chinese --> 安装下图插件并重启 设置Pytest用例前显示三角执行图标 设置 --> 工具 --> Python集成工具--> 测试 --> 默认测试运行程序选pytest 设置完重启PyCharm,效果如下图。 ...
分类:
其他好文 时间:
2020-11-17 12:30:31
阅读次数:
4
1.Auto Rename Tag (标签插件) 2.Bracket Pair Colorizer(对代码中的括号添上一抹亮色) 3.Chinese language Pack for Visual Studio Code(vscode中文插件) 4.Code Spell Checker(TS和JS ...
分类:
其他好文 时间:
2020-11-04 17:38:33
阅读次数:
19
E Nothing is eternal in the world, Kostya understood it on the 7-th of January when he saw partially dead four-color garland. Now he has a goal to rep ...
分类:
其他好文 时间:
2020-11-02 10:34:31
阅读次数:
23
Invoke()的作用是:在应用程序的主线程上执行指定的委托。一般应用:在辅助线程中修改UI线程( 主线程 )中对象的属性时,调用this.Invoke(); /* 相机打开回调 */private void OnCameraOpen(object sender, EventArgs e) { th ...
分类:
编程语言 时间:
2020-10-30 12:44:11
阅读次数:
17
1.路径提示工具 Path Intellisense 2.中文语言包:Chinese (Simplified) Language Pack for Visual Studio Code 3.SVN项目管理工具:TortoiseSVN 4.Vue开发工具:Vetur 5.在浏览器打开:View In ...
分类:
其他好文 时间:
2020-10-24 09:47:53
阅读次数:
24
函数组:THFB 1.函数TH_WPINFO:当前进程处理清单,可用于判断当前程序或是函数是否重复执行。 2.函数TH_LONG_USR_INFO:用户信息 3.函数TH_PLUGINS_ACTIVE 4.函数TH_POPUP:弹出框 5.函数TH_QRFC_REQUESTS:QRFC队列 6.函数 ...
分类:
其他好文 时间:
2020-10-20 16:40:06
阅读次数:
33