11 2021 档案
摘要:参考: 测试官方文档: https://developer.android.com/training/testing?hl=zh-cn 附带app打包发布: https://blog.csdn.net/qq_38436214/article/details/112288954 测试示例:【注意 引入
阅读全文
摘要:bash命令行登录远程服务器,python项目部署与运行 1、登录远程服务器 eg: ssh -p [端口] [用户]@[ip] --输入密码 2、进入项目目录:cd xxx 以下是基于已经安装了python,及配置好 3、创建虚拟环境: pip install --user virtualenvw
阅读全文
摘要:1、zip(list1, list2) >>> questions = ['name', 'quest', 'favorite color'] >>> answers = ['lancelot', 'the holy grail', 'blue'] >>> for q, a in zip(quest
阅读全文
摘要:Message: An unknown server-side error occurred while processing the command. Original error: Error executing adbExec. Original error: 'Command 'C:\\**
阅读全文
摘要:1 模块搜索路径:https://docs.python.org/zh-cn/3.6/tutorial/modules.html 当一个名为 spam 的模块被导入的时候,解释器首先寻找具有该名称的内置模块。如果没有找到,然后解释器从 sys.path 变量给出的目录列表里寻找名为 spam.py
阅读全文