摘要:
JSON提取器说明: Apply to:应用范围 Names of created variables :接收值的变量名,自定义,多个变量用分号分隔 JSON Path expression: json path表达式,也是用分号分隔 Match No.(0 for Random):0表示随机;n取 阅读全文
摘要:
list1 = []list2 = []list3 = []for i in range(1, 101): if i % 2 == 0: list1.append(i) else: list2.append(i) if i % 5 == 0: list3.append(i)print('1到100的 阅读全文