摘要:
<!-- * @Version: 1.0 * @Autor: * @Date: 2021-11-23 17:03:39 * @LastEditors: * @LastEditTime: 2021-12-01 11:30:19 --> <template> <div id="ta"> <el-tabl 阅读全文
摘要:
https://www.cnblogs.com/zhuminghui/p/11699313.html 阅读全文
摘要:
1、配置注释默认参数 在VSCode的settings里搜索Custom Made,然后在settings.json文件中添加如下代码 // 以下为新添加 "fileheader.customMade": { //此为头部注释 "Version": "1.0", "Autor": "myname", 阅读全文
摘要:
1、lighthouse指标 1.1、性能(Performance) 1、FCP(First Contentful Paint) FCP度量用户导航到您的页面后浏览器呈现第一块DOM内容所花费的时间。页面上的图像、非白色的<canvas>元素和svg被认为是DOM内容;iframe里面的任何东西都不 阅读全文
摘要:
一、首字母排序 说明:有一个字符串列表 然后根据字符串的第一个字母 对这个字符串列表进行排序 #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : @Author : @File : @Version : @Function: """ f 阅读全文
摘要:
官网(JS):https://echarts.apache.org/zh/index.html 官网(Python):https://pyecharts.org/#/zh-cn/geography_charts?id=map%ef%bc%9a%e5%9c%b0%e5%9b%be 在Vue中使用ech 阅读全文
摘要:
一、无返回值 #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : @Author : @File : @Version :1.0 @Function: """ # 定义接口 class InterfaceRoot(object): de 阅读全文
摘要:
1、代码 直接调用 VersionControl.get_version() 即可返回本次版本号(上一次版本号+1) #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2021/10/28 19:07 @Author :维斯 @File 阅读全文
摘要:
import datetime import time import pytz as pytz if __name__ == '__main__': tz = pytz.timezone('Asia/Shanghai') # 东八区 t = datetime.datetime.fromtimesta 阅读全文
摘要:
import urllib.parse if __name__ == '__main__': str_ = '%E6%99%BA%E6%85%A7' print(urllib.parse.unquote(str_)) 阅读全文
摘要:
https://www.cnblogs.com/liulinghua90/p/9935642.html 阅读全文
摘要:
1、https://www.cnblogs.com/liming19680104/p/11306923.html pip install python-docx 阅读全文
摘要:
#正则表达式相关符号说明:https://www.cnblogs.com/huxi/archive/2010/07/04/1771073.html #正则对字符串相关操作:https://www.cnblogs.com/amengduo/p/9586732.html 1、python xpath 正 阅读全文
摘要:
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2021/9/26 14:29 @Author :维斯 @File :test.py @Version :1.0 @Function: """ from lxml import etre 阅读全文
摘要:
import time def wrapper_calc_time(print_log=True): """ 计算func执行时间 :param print_log: 是否打印日志 :return: """ def wrapper(func): def inner_wrapper(*args, ** 阅读全文
摘要:
参考 #!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : @Author : @File : @Version : @Function: """ import logging # 创建日志器 logger = logging.getLo 阅读全文
摘要:
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time :2021/9/18 16:27 @Author : @File :findFile.py @Version :1.0 @Function: """ import os class Fin 阅读全文
摘要:
import datetime import os def update_file_name(file_path): """ 修改指定路径下的所有文件名称 os.listdir(path) 返回path路径下的文件及文件夹名称 os.rename(old_name, new_name) 将old_n 阅读全文
摘要:
def calcDateDiff(startDate: str, endDate: str, dateFormat='%Y/%m/%d'): """ 计算两个日期相差多少天 :param startDate: 开始日期 eg: '2020/03/25' :param endDate: 结束日期 eg 阅读全文
摘要:
import datetime class DateTool: @staticmethod def offset(date_format, offset_type, count, data=None): """ 日期偏移(前N天、后N天) @param date_format: 格式(如:%Y-%m 阅读全文
摘要:
压缩:zcvf (c-copy 复制一份新的进行压缩 速记) 解压:zxvf 项目部署至服务器相关Linux命令 # 1 本地项目打成压缩包(项目文件夹:filename) tar zcvf filename.tar.gz filename # 2 本地项目文件压缩包上传至服务器(压缩包:filen 阅读全文
摘要:
消息队列介绍:https://www.cnblogs.com/lixiaoxuan/p/14174406.html 什么是消息队列:https://www.jianshu.com/p/1186d5e1b9be 消息队列设计精要:https://zhuanlan.zhihu.com/p/2147955 阅读全文
摘要:
https://www.pianshen.com/article/8304297479/ 阅读全文
摘要:
方式1: if __name__ == '__main__': """ 问题:找出字符串中重复出现的字符 并求出重复次数 且根据重复次数从大到小排列 """ str_old = '13678765387' str_list = list(str_old) # 将字符串按照单个字符分割成列表 str_ 阅读全文
摘要:
参考 if __name__ == '__main__': s = [ {"no": 28, "score": 90}, {"no": 25, "score": 90}, {"no": 1, "score": 100}, {"no": 2, "score": 20}, ] # 单级排序,仅按照sco 阅读全文
摘要:
一、注册PyPI账号 https://pypi.org 二、创建项目 注意: 2.1、创建 “README.md” 文件 三、创建setup.py文件 可直接复制 修改对应信息即可 setup.py文件 #!/usr/bin/env python # -*- coding: utf-8 -*- "" 阅读全文
摘要:
在线生成工具:https://readme.so/ README.md文件配置 # README 这是一个可定制化的XMind用例解析工具(不限制XMind层级) 可根据自定义配置 将XMind中编写的测试用例导出至Excel(后期打算对XMind进行二次开发 直接将此工具集成到XMind中) ## 阅读全文
摘要:
一般异常捕获做法(不够灵活,复用性不强) if __name__ == '__main__': # 一般做法(或者再加个循环触发) try: driver.switch_to.alert.accept() # 有可能弹框没出来 会报错 except: time.sleep(5) driver_.sw 阅读全文
摘要:
中文教程文档:https://cn.vuejs.org/ 视频教程:https://learning.dcloud.io/ 开发所有前端应用的框架(一套代码编到10个平台 ):https://uniapp.dcloud.io/ 前端路由视频详解:https://haokan.baidu.com/v? 阅读全文
摘要:
原理: 在字符串外部标签上添加一个样式:style="white-space:pre" https://blog.csdn.net/qq_35857421/article/details/109711653 阅读全文
摘要:
原理:通过el-select筛选后的值 放到一个临时变量a el-table的数据来源为临时变量a https://blog.csdn.net/weixin_45030838/article/details/106540976 阅读全文
摘要:
https://blog.csdn.net/deniro_li/article/details/102531090/?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-0&spm=1001.2101.3001.4242 未加 阅读全文
摘要:
/** * @auth * @param {String} text 需要复制的内容 * @return {Boolean} 复制成功:true或者复制失败:false 执行完函数后,按ctrl + v试试 */ function copy(text) { var textareaEl = docu 阅读全文
摘要:
marin、border、padding 1、https://www.cnblogs.com/LastFire/p/8185562.html 2、https://developer.51cto.com/art/201008/219288.htm 阅读全文
摘要:
一、财经数据 1、东方财富网:https://www.eastmoney.com/ 2、财联社:https://www.cls.cn/ 3、巨潮资讯:http://www.cninfo.com.cn/new/index 4、看财报:https://www.kancaibao.com/ 5、晨星评级: 阅读全文
摘要:
""" -*- coding:utf-8 -*- @Time :2021/3/1 18:56 @Author : @File :cet4.py @Version:1.0 """ # # 1 数据来源 # 中国教育在线网_词汇:https://www.eol.cn/html/en/cetwords/c 阅读全文
摘要:
https://blog.csdn.net/HoyAnGx/article/details/124835576 阅读全文
摘要:
参考:衡量软件测试质量的常用度量指标 不准确: 用例命中率 = bug数 / 用例数 相对较准确: 用例命中率 = 由测试用例发现的缺陷数 / 缺陷总数 阅读全文
摘要:
TensorFlow官方文档 TODO: 1、保存并复用训练好的模型 2、loss值为nan 3、matlab 根据一个曲线 求出此曲线的函数表达式 pip3 install tensorflow -i http://pypi.douban.com/simple/ --trusted-host py 阅读全文