上一页 1 ··· 5 6 7 8 9 10 下一页
摘要: 第一个思路:根据索引取字符串中得值 第二个思路:运用in成员运算符 j 在字符中,一个一个取出来 第三个思路:比如153除100取整1,153除100取余53然后再除10取整5,153除100取余然后再除10取余 再python中立方 n**3 阅读全文
posted @ 2021-01-20 16:26 文刀六日 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 如果一个正整数等于除它本身之外其他所有除数之和,就称之为完全数。 例如:6是完全数,因为6 = 1+2+3; 下一个完全数是28 = 14+7+4+2+1。 求1000以下的完全数 思路: 比如6来举例 6%1 =6..0 6% 2=3..0 6%3=2...0 6%4=1..2 6%5=1..1 阅读全文
posted @ 2021-01-20 14:55 文刀六日 阅读(1796) 评论(0) 推荐(0) 编辑
摘要: 字符串切片: 学习博客: https://blog.csdn.net/wang263334857/article/details/79440254 阅读全文
posted @ 2021-01-20 10:37 文刀六日 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 1.安装flask pip install flask 2.使用flask, 在服务器上面看到response返回数据 from flask import Flask app = Flask(__name__) @app.route('/',method = 'get') login(): data 阅读全文
posted @ 2020-09-23 23:19 文刀六日 阅读(97) 评论(0) 推荐(0) 编辑
摘要: import hashlib 思路: 比如说我要给百度网的host加密 host = ‘’www.baidu.com md5 = hashlib.md5() md5.update(host.encode('utf-8')) md5.hexdigest() print(res) 打印的结果: dab1 阅读全文
posted @ 2020-09-22 23:25 文刀六日 阅读(133) 评论(0) 推荐(0) 编辑
摘要: header的使用: imoprt requests url = '' head = { 'host':'www.baidu.com', 'Content-type':'application/json' } requests.get(url,headers = head) 阅读全文
posted @ 2020-09-20 23:19 文刀六日 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1.下载文件的url 2.url是get还是post import requests down_url = '' res = request.get('url') --此时执行会返回200,此时的res只是个对象 with open('badu.apk','wb')as f: f.write(res 阅读全文
posted @ 2020-09-20 23:01 文刀六日 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1.fiddler无法抓某网站的接口时,提示当前网络断开,非认证 fiddler-option-https-Ations- Export Root Certificate to Desktop 2.打开浏览器- 设置 - 隐私设置及安全性 - 证书管理 - 导入桌面证书至受信任的 根证书颁发机构 因 阅读全文
posted @ 2020-09-19 23:42 文刀六日 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 思路: 1. 接口请求 requests.post(url,files=file) 2.url,上传文件的接口地址 3.files,上传文件的信息 url = 'https://www.baidu.com/user/postpic' files = { --fileFieID是接口的参数,type也 阅读全文
posted @ 2020-09-19 23:22 文刀六日 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 接口测试- json格式处理: import json import requests url='http://www.baidu.com' data ={ 'username':'test01', 'password';'test01' } rest = requests.post(url,dat 阅读全文
posted @ 2020-09-19 22:53 文刀六日 阅读(170) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页