摘要: 下载:https://www.genymotion.com/download/ 安装前先注册: https://www.runoob.com/w3cnote/android-tutorial-genymotion-install.html 使用官方help 3.0 document:https:// 阅读全文
posted @ 2020-01-28 22:39 不带R的墨菲特 阅读(213) 评论(0) 推荐(0)
摘要: 实例 1 : 使用 update() 方法,第二个参数合并第一个参数 def Merge(dict1, dict2): return(dict2.update(dict1)) 实例 2 : 使用 **,函数将参数以字典的形式导入 def Merge(dict1, dict2): res = {**d 阅读全文
posted @ 2020-01-28 21:59 不带R的墨菲特 阅读(243) 评论(0) 推荐(0)
摘要: 实例 以下实例演示了 walk() 方法的使用: #!/usr/bin/python # -*- coding: UTF-8 -*- import os for root, dirs, files in os.walk(".", topdown=False): for name in files: 阅读全文
posted @ 2020-01-28 21:58 不带R的墨菲特 阅读(181) 评论(0) 推荐(0)