摘要:
接口测试概述 定义 API testing is a type of software testing that involves testing application programming interfaces (APIs) directly and as part of integratio 阅读全文
摘要:
第6课 循环 1、for 元素 in 序列: statement Python的新函数range():新建一个数列,都是整数,从0开始,下一个元素比上一个元素大1,一直到数列的上限(不包括上限)。PS:range()在3.2中用法有变化 1 for a in range(5): 2 print a 阅读全文