04 2021 档案

该文被密码保护。
posted @ 2021-04-16 17:08 小小咸鱼YwY 阅读(0) 评论(0) 推荐(0) 编辑
摘要:1.gzip解密 import binascii import io import gzip import json def gzip_decode(content): #二进制 print(content) buf = io.BytesIO(content) gf = gzip.GzipFile( 阅读全文
posted @ 2021-04-07 09:59 小小咸鱼YwY 阅读(452) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2021-04-07 09:55 小小咸鱼YwY 阅读(1) 评论(0) 推荐(0) 编辑
摘要:while循环 while( 布尔表达式 ) { //循环内容 } do...while循环 do { //代码语句 }while(布尔表达式); //相对于while循环他会至少执行一次do里面的代码 for循环 方式一 for(初始化; 布尔表达式; 更新) { //代码语句 } 方式二 for 阅读全文
posted @ 2021-04-01 15:25 小小咸鱼YwY 阅读(80) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示