控制安卓手机包adb:pip install pure-python-adbimport ppadb
git branch -a # 展示所有branchgit branch -m <old branch name> <new branch name> # m为move,可重命名和移动branchgit checkout <branch name> # 切换
from matplotlib import pyplot as pltfig, axs = plt.subplots(2) # 一个画布有两个子图file_name = 'title'fig.suptitle(file_name) # 设置子图标题axs[0].plot(xs=list_x,
adb常用命令adb root # 使用root模式运行adbadb remount # 使用remount模式运行adbadb shell # 进入内核linux模式adb pull phone_dir computer_dir # 移动手机内部文件phone_dir到computer_d