作者:guopengfa

记录那些python import包名和pip install 包名不一致的一些包

控制安卓手机包adb:pip install pure-python-adbimport ppadb

guopengfa guopengfa 发布于 2021-09-14

git常用命令

git branch -a # 展示所有branchgit branch -m <old branch name> <new branch name> # m为move,可重命名和移动branchgit checkout <branch name> # 切换

guopengfa guopengfa 发布于 2021-09-02

C语言暂停

guopengfa guopengfa 发布于 2021-08-13

c语言数据类型

guopengfa guopengfa 发布于 2021-08-13

matplotlib笔记

from matplotlib import pyplot as pltfig, axs = plt.subplots(2) # 一个画布有两个子图file_name = 'title'fig.suptitle(file_name) # 设置子图标题axs[0].plot(xs=list_x,

guopengfa guopengfa 发布于 2021-08-13

adb常用命令记录

adb常用命令adb root # 使用root模式运行adbadb remount # 使用remount模式运行adbadb shell # 进入内核linux模式adb pull phone_dir computer_dir # 移动手机内部文件phone_dir到computer_d

guopengfa guopengfa 发布于 2021-08-12