上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 把鼠标指针放到屏幕的下边框(没有Dock的屏幕底部,黑色边框完覆盖鼠标指针)悬停一秒,dock就会自动过去,想移回来就在原来的屏幕下边框停一秒即可。 阅读全文
posted @ 2021-10-29 16:17 pandaly 阅读(584) 评论(0) 推荐(0) 编辑
摘要: 第一步:执行第一个next(gen),执行到语句value = (yield 1)后,执行被挂起,直接返回yield关键字后面表达式的值即为1,所以next(gen)结果为1;注意此时并没有执行value的赋值 第二步:执行第二个next(gen)时,从上一个挂起位置的下一行开始,也就是从 prin 阅读全文
posted @ 2021-07-15 12:10 pandaly 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 文件头部注释 #!/usr/bin/env python # -*- coding: UTF-8 -*- """ @Project :JDCouponOffice @File :test.py @Author :panda @Date :2021/3/26 10:56 """ 函数自动注释 定义函数 阅读全文
posted @ 2021-03-26 11:10 pandaly 阅读(971) 评论(0) 推荐(1) 编辑
摘要: $'\r':command not found 1 原因: 文件在Windows系统编辑过,文件换行使用的是\r\n,而Unix系统是\n 2 解决方案: 方法一:用dos2unix做转换 安装dos2unix yum install dos2unix –y dos2unix aaa.sh 方法二: 阅读全文
posted @ 2020-11-30 19:56 pandaly 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 求交易总额的最大值两种方法: SELECT c.merchant_no,SUM(c.transaction_amount) AS tt FROM mer_detail c WHERE c.created_date >"2020-09-01" GROUP BY c.merchant_no ORDER 阅读全文
posted @ 2020-09-09 15:03 pandaly 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 这里以windows为例来演示,其它操作系统需根据情况修改相应步骤。 一、下载安装包 首先去xmind国外官网下载对应操作系统的安装包,国内官网的那个是有残缺的,不支持破解。 官网下载链接 二、下载破解补丁 链接: https://pan.baidu.com/s/1vl7e33bJed3efmG__ 阅读全文
posted @ 2020-08-19 10:18 pandaly 阅读(15697) 评论(0) 推荐(2) 编辑
摘要: 1 Python 1.1 chm下载 1.2 目录介绍 1.3 Pip命令使用 Pip:python包安装和管理工具 a) 安装包 pip install selenium b) 卸载包 pip uninstall selenium c) 显示安装了哪些文件 pip show selenium 2 阅读全文
posted @ 2020-08-05 19:14 pandaly 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 一、Autoit 上传文件、 1.常用语法 - WinActivate("title") 聚焦到指定活动窗口 - ControlFocus ( "title", "窗口文本", controlID) 设置输入焦点到指定窗口的某个控件上; - WinWait ( "title" , "窗口文本" , 阅读全文
posted @ 2020-07-27 21:19 pandaly 阅读(2142) 评论(0) 推荐(0) 编辑
摘要: 1 官网下载并按装小狼毫输入法: https://rime.im/ 2 右键输入法打开输入法设定 3 点击获取更多输入法方案 4 在弹窗中输入:https://github.com/rime/rime-wubi 如图下图所示,提示有已复制文件,说明安装五笔插件成功 5 继续在弹窗中输入:https: 阅读全文
posted @ 2020-07-18 17:32 pandaly 阅读(7077) 评论(1) 推荐(2) 编辑
摘要: yml文件的更新后工具类: import os import yaml class YamlUtils(): def __init__(self,folder_name='config'): self.foler_name = folder_name def get_yaml_load(self, 阅读全文
posted @ 2020-07-09 15:52 pandaly 阅读(5879) 评论(1) 推荐(2) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页