2015年12月14日
摘要: 转自:http://automationtesting.sinaapp.com/blog/m_locustio_doc python测试文章 http://weibo.com/cizhenshi?is_search=0&visible=0&is_tag=0&profile_ftype=1&page= 阅读全文
posted @ 2015-12-14 21:25 清明-心若淡定 阅读(1520) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/vamei/archive/2012/11/09/2762224.htmlPython内置(built-in)函数随着python解释器的运行而创建。在Python的程序中,你可以随时调用这些函数,不需要定义。最常见的内置函数是:print("He... 阅读全文
posted @ 2015-12-14 11:28 清明-心若淡定 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 往文件中写入中文,再从文件中读出,范例1:#coding:utf-8with open('data.log','w') as f: a=u'中文' b = a.encode('gbk') f.write(b)with open('data.log','r') as f: l1... 阅读全文
posted @ 2015-12-14 11:15 清明-心若淡定 阅读(119) 评论(0) 推荐(0) 编辑
摘要: http://facecode.org:88/ 阅读全文
posted @ 2015-12-14 10:31 清明-心若淡定 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/vamei/archive/2012/11/06/2755503.htmlimport模块在Python经常使用import声明,以使用其他模块(也就是其它.py文件)中定义的对象。1) 使用__name__当我们编写Python库模块的时候,我们... 阅读全文
posted @ 2015-12-14 10:27 清明-心若淡定 阅读(231) 评论(0) 推荐(0) 编辑