摘要: 代码如下: import requests url = "http://****.**.****.com/passportSeparate/login" header = {"Content-Type":"application/json;charset=UTF-8" } req_data = { 阅读全文
posted @ 2022-11-15 14:11 **山止川行** 阅读(2952) 评论(0) 推荐(0) 编辑
摘要: 1、将一个列表的数据复制到另一个列表中。 a = [1, 2, 3]b = a[:]print (a)print (b) 2、输出 9*9 乘法口诀表 for i in range(1, 10): print() for j in range(1, i+1): print ("%d*%d=%d" % 阅读全文
posted @ 2022-11-15 11:18 **山止川行** 阅读(150) 评论(0) 推荐(0) 编辑