……

04 2021 档案

with与async with
摘要:with与async with 应用场景 文件的读写 数据库的读写操作 Flask的上下文管理 上下文管理协议:当使用with语句时,解释器会自动调用enter,exit class Sample: def __enter__(self): print('进入资源') return self def 阅读全文

posted @ 2021-04-21 18:00 Exlo 阅读(454) 评论(0) 推荐(0)

adb 常用命令
摘要:进入安卓shell adb shell 查看系统位数 adb shell cat /proc/cpuinfo 重启 adb reboot 打开5555端口 adb tcpip 5555 电脑连接Android设备 adb connect ip 安装软件到安卓 adb install packagen 阅读全文

posted @ 2021-04-19 15:33 Exlo 阅读(96) 评论(0) 推荐(0)

导航