上一页 1 ··· 34 35 36 37 38
摘要: 练习dict的映射 1 #coding:utf-8 2 #问题: a->c, b->d, c->e... 现在有结果字符串求原字符串 3 dict1={'a':'c', 4 'b':'d', 5 'c':'e', 6 'd':'f', 7 'e':'g', 8 ... 阅读全文
posted @ 2014-08-12 15:11 熠然 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 昨天上了python培训的第一课,学习了基础知识。包括类型和赋值,函数type(),dir(),id(),help()的使用,list/tuple/dict的定义以及内置函数的操作,函数的定义,控制语句的学习for,if,while以及输入raw_input和输出print。今天复习类型及赋值的时候... 阅读全文
posted @ 2014-08-11 13:39 熠然 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 1 #Filename:game1.py 2 3 guess=10 4 running=True 5 while running: 6 try: 7 answer=int(raw_input('Guess what i think:')) 8 ... 阅读全文
posted @ 2014-08-08 15:03 熠然 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 使用eclipse启动emulator的时候,出现PANIC:Could not open emulator,模拟器无法正常的运行。 经过搜索得知,因为我的SDK的环境变量出问题,需要重新配置下环境变量。 阅读全文
posted @ 2014-07-22 19:39 熠然 阅读(505) 评论(0) 推荐(0) 编辑
摘要: Appium运行的时候,查看到log输出为: info: Welcome to Appium v1.2.0 (REV e53f49c706a25242e66d36685c268b599cc18da5)info: Appium REST http interface listener started 阅读全文
posted @ 2014-07-22 19:34 熠然 阅读(6232) 评论(0) 推荐(0) 编辑
摘要: 看过乙醇大神的博文,然后又看了一些大神的博文,自己陆陆续续的折腾了一个月,今天上午的时候,appium终于跑起来了。纪念下,在自动化路上取得的一个小胜利 Appium版本:1.2 Python版本:2.7 Windows:Windows 7 x86 阅读全文
posted @ 2014-07-22 15:23 熠然 阅读(422) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38