python encode和decode的妙用


Posted in Python onSeptember 02, 2009

>>> "hello".encode("hex")
'68656c6c6f'

相应的还可以

>>> '68656c6c6f'.decode("hex")
'hello'

查了一下手册,还有这些codec可用

Codec Aliases Operand type Purpose
base64_codec base64, base-64 byte string Convert operand to MIME base64
bz2_codec bz2 byte string Compress the operand using bz2
hex_codec hex byte string Convert operand to hexadecimal representation, with two digits per byte
idna   Unicode string Implements RFC 3490. New in version 2.3. See also encodings.idna
mbcs dbcs Unicode string Windows only: Encode operand according to the ANSI codepage (CP_ACP)
palmos   Unicode string Encoding of PalmOS 3.5
punycode   Unicode string Implements RFC 3492. New in version 2.3.
quopri_codec quopri, quoted-printable, quotedprintable byte string Convert operand to MIME quoted printable
raw_unicode_escape   Unicode string Produce a string that is suitable as raw Unicode literal in python source code
rot_13 rot13 Unicode string Returns the Caesar-cypher encryption of the operand
string_escape   byte string Produce a string that is suitable as string literal in python source code
undefined   any Raise an exception for all conversions. Can be used as the system encoding if no automatic coercion between byte and Unicode strings is desired.
unicode_escape   Unicode string Produce a string that is suitable as Unicode literal in python source code
unicode_internal   Unicode string Return the internal representation of the operand
uu_codec uu byte string Convert the operand using uuencode
zlib_codec zip, zlib byte string Compress the operand using gzip
Python 相关文章推荐
python操作CouchDB的方法
Oct 08 Python
python入门之语句(if语句、while语句、for语句)
Jan 19 Python
ubuntu系统下 python链接mysql数据库的方法
Jan 09 Python
python中的break、continue、exit()、pass全面解析
Aug 05 Python
浅谈numpy库的常用基本操作方法
Jan 09 Python
python 反向输出字符串的方法
Jul 16 Python
Python中的self用法详解
Aug 06 Python
Python自定义聚合函数merge与transform区别详解
May 26 Python
keras 自定义loss层+接受输入实例
Jun 28 Python
一文读懂Python 枚举
Aug 25 Python
Python实现列表拼接和去重的三种方式
Jul 02 Python
据Python爬虫不靠谱预测可知今年双十一销售额将超过6000亿元
Nov 11 Python
python 简易计算器程序,代码就几行
Aug 29 #Python
python 提取文件的小程序
Jul 29 #Python
Python 文件重命名工具代码
Jul 26 #Python
python 生成目录树及显示文件大小的代码
Jul 23 #Python
python 域名分析工具实现代码
Jul 15 #Python
python 自动提交和抓取网页
Jul 13 #Python
python self,cls,decorator的理解
Jul 13 #Python
You might like
php中判断文件存在是用file_exists还是is_file的整理
2012/09/12 PHP
PHP数据库链接类(PDO+Access)实例分享
2013/12/05 PHP
PHP使用imagick读取PDF生成png缩略图的两种方法
2014/03/20 PHP
Yii框架连接mongodb数据库的代码
2016/07/27 PHP
PHP解耦的三重境界(浅谈服务容器)
2017/03/13 PHP
php之可变函数的实例详解
2017/09/13 PHP
关于PHP求解三数之和问题详析
2020/11/09 PHP
Javascript document.referrer判断访客来源网址
2020/05/15 Javascript
js定时器(执行一次、重复执行)
2014/03/07 Javascript
jQuery之动画效果大全
2016/11/09 Javascript
浅谈vue实现数据监听的函数 Object.defineProperty
2017/06/08 Javascript
详解webpack和webpack-simple中如何引入css文件
2017/06/28 Javascript
NodeJS安装图文教程
2018/04/19 NodeJs
解决Vue在封装了Axios后手动刷新页面拦截器无效的问题
2018/11/08 Javascript
详解如何使用webpack打包多页jquery项目
2019/02/01 jQuery
vue transition 在子组件中失效的解决
2019/11/12 Javascript
JavaScript 如何在浏览器中使用摄像头
2020/12/02 Javascript
[13:55]Newbee vs Team Spirit
2018/06/07 DOTA
python通过zlib实现压缩与解压字符串的方法
2014/11/19 Python
urllib和BeautifulSoup爬取维基百科的词条简单实例
2018/01/17 Python
Python将多个list合并为1个list的方法
2018/06/27 Python
浅析python的优势和不足之处
2018/11/20 Python
python之线程通过信号pyqtSignal刷新ui的方法
2019/01/11 Python
python爬虫实现中英翻译词典
2019/06/25 Python
python使用百度文字识别功能方法详解
2019/07/23 Python
Python爬虫:将headers请求头字符串转为字典的方法
2019/08/21 Python
Python Des加密解密如何实现软件注册码机器码
2020/01/08 Python
pytorch实现查看当前学习率
2020/06/24 Python
Python csv文件记录流程代码解析
2020/07/16 Python
HTML5的结构和语义(4):语义性的内联元素
2008/10/17 HTML / CSS
存储过程的优点有哪些
2012/09/27 面试题
高中班长自我鉴定
2013/12/20 职场文书
创建服务型党组织实施方案
2014/02/25 职场文书
学术会议通知范文
2015/04/15 职场文书
2015年医院保卫科工作总结
2015/07/23 职场文书
Redis集群节点通信过程/原理流程分析
2022/03/18 Redis