码迷,mamicode.com
首页 >  
搜索关键字:encode    ( 3054个结果
hashlib getpass模块
### haslib - 加密应用 - 注册和登录,通过列表 #解密在服务器server端 import hashlib def get_md5(data): obj = hashlib.md5("fsafas".encode("utf-8")) #这里是加盐一般不能固定,一般用用户名 obj.up ...
分类:其他好文   时间:2021-04-14 12:12:01    阅读次数:0
经典问题--php/go输出n对括号的所有组合
问题 n对括号有多少种合法的组合,写出一个可以执行出该结果的函数: 当n=1时,输出["()"]; 当n=2时,输出["(())","()()"]; 当n=3时,输出["((()))","(()())","(())()","()(())","()()()"]; Normal 0 7.8 磅 0 2 ...
分类:Web程序   时间:2021-04-12 11:53:24    阅读次数:0
python文件读写追加
操作方法 with open('文件名',mode='读写追加',encoding='编码方式') f.close=没有用with就要写他关闭 可搂s 只读 r 读写 r+ bs类型 rb=不用写编码方式 r+b=要在写的后面加 f.write(写的内容.encode('编码方式')) f.read ...
分类:编程语言   时间:2021-04-07 11:29:29    阅读次数:0
Python编码解码技巧汇总
Python编码解码技巧汇总 encode encode将字符串转换为bytes类型的对象 (即b为前缀, bytes类型), 即Ascll编码, 字节数组 a = "检测到网站攻击" print(a.encode()) print(type(a.encode())) # b'\xe6\xa3\x8 ...
分类:编程语言   时间:2021-04-06 14:32:28    阅读次数:0
Base64 替换 BASE64Encoder
代码 //base64编码 String a = new String(base64.encode(text.getBytes("UTF-8"))); String b = new String(Base64.encodeBase64(text.getBytes("UTF-8"))); String ...
分类:Web程序   时间:2021-03-16 14:04:57    阅读次数:0
jquery中$.ajax参数详解
1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。 2.type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和delete也可以使用,但仅部分浏览器支持。 3.timeout: 要求为Number类型的 ...
分类:Web程序   时间:2021-03-16 13:48:26    阅读次数:0
python调包——hashlib加密
python调包——hashlib加密 #加密 md5 sha1 sha256 sha512 import hashlib msg ="hello world" md5 = hashlib.md5(msg.encode('utf-8'))#之所以选择用utf-8对msg进行编码,是因为考虑到了msg ...
分类:编程语言   时间:2021-03-02 12:27:58    阅读次数:0
python读取xml格式数据
读取节点文本值和,属性值 # -*- coding: UTF-8 -*- from xml.dom import minidom dom=minidom.parse('F:\\python_project\\爬虫\\双色球\\shuangseqiu.xml') root=dom.documentEl ...
分类:编程语言   时间:2021-02-24 13:10:12    阅读次数:0
java网络编程
定义: 网络可以使不同物理位置的计算机达到资源共享和通信的目的。 相关的包:java.net 提供了两种通信协议:(传输层协议) TCP (transmission Control Protocol)传输控制协议,可靠的传输协议,传输前采用“三方握手”的方式建立连接,以保证传输的可靠性。 UDP ( ...
分类:编程语言   时间:2021-02-24 13:08:52    阅读次数:0
2020 BIT冬训-二分三分快速幂矩阵 L - Decode the Strings HDU - 2371
Problem Description Bruce Force has had an interesting idea how to encode strings. The following is the description of how the encoding is done:Let x1 ...
分类:其他好文   时间:2021-02-19 13:18:41    阅读次数:0
3054条   上一页 1 2 3 4 5 ... 306 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!