摘要:
字符串.split()#返回的数据类型 是列表 列表里面的元素都是字符串类型 my_str.split(str1, maxsplit) str1 可以不写,默认是空白字符(" " “\t” “\n”) 将my_str 这个字符串按照str1 进行切割, maxsplit 割几次 my_str = " 阅读全文
摘要:
D:/code/python_study/lesson/class_1207_api/http_request.pyimport os path = os.getcwd() #返回当前工作目录 print(path)输出结果:D:\code\python_study\lesson\class_120 阅读全文
摘要:
post请求参数解析: url: 请求的url,必填; data: 选填,请求参数; json: 选填,请求参数; kwargs:选填,可以传入headers、cookies等。 data和json有啥区别呀,什么时候传入data,什么时候传入json。 1、当前接口的请求类型为applicatio 阅读全文