03 2019 档案
idea git commit撤销
摘要:到项目目录下,打开git bash 1、git log 找到要撤销的版本id1 commit之前的版本id2 2、git reset –hard id13、git reset id2 参考链接:https://blog.csdn.net/u010486679/article/details/8214 阅读全文
posted @ 2019-03-19 12:07 @ 小浩 阅读(10561) 评论(0) 推荐(0)
python3 模拟鼠标和键盘操作
摘要:1. 安装pyperclip 使用方法复制 粘贴 2. 安装PyKeyboard安装pywin32https://pypi.org/project/pywin32/#files 这边下载whl文件,之后用命令行pip install 安装,注意选择好对应的版本。 安装pyHookhttps://ww 阅读全文
posted @ 2019-03-11 02:18 @ 小浩 阅读(3666) 评论(0) 推荐(0)
Python import与from import使用及区别介绍
摘要:Python程序可以调用一组基本的函数(即内建函数),比如print()、input()和len()等函数。接下来通过本文给大家介绍Python import与from import使用及区别介绍,感兴趣的朋友一起看看吧 下面介绍下Python import与from import使用,具体内容如下 阅读全文
posted @ 2019-03-10 19:33 @ 小浩 阅读(4765) 评论(1) 推荐(1)
python with as的用法
摘要:with如何工作? 阅读全文
posted @ 2019-03-10 18:14 @ 小浩 阅读(289) 评论(0) 推荐(0)