摘要: for 循环语句 1.单个for循环: s1 = 'Python'for s2 in s1: print(s2) Python 2.列表for循环: s1 = ['miaoji','xiajiao ','dandan','douji']for s2 in s1: print(s2.title()+" 阅读全文
posted @ 2019-03-25 13:59 七斗 阅读(117) 评论(0) 推荐(0)
摘要: 1.Appium-desktop配置Desired Capabilities 报错解决:1.提示安装Unicode失败报错解决方法,找到android.js,然后注释掉这几个apk 其他报错合集参考博客:https://blog.csdn.net/MenofGod/article/details/8 阅读全文
posted @ 2019-03-18 11:40 七斗 阅读(116) 评论(0) 推荐(0)
摘要: 字符串拼接+: first="hello" #将hello赋值给变量firstsecond="world" #将world赋值给变量secondfull=first+“ ”+second #拼接first 空格 second并复制给fullprint(full) #打印full完整的值 hello 阅读全文
posted @ 2019-03-15 11:29 七斗 阅读(120) 评论(0) 推荐(0)