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基类函数的重载与调用实例分析
Jan 12 Python
python 实现网上商城,转账,存取款等功能的信用卡系统
Jul 15 Python
python读取oracle函数返回值
Jul 18 Python
python爬虫使用cookie登录详解
Dec 27 Python
Django中STATIC_ROOT和STATIC_URL及STATICFILES_DIRS浅析
May 08 Python
Python实现多条件筛选目标数据功能【测试可用】
Jun 13 Python
python3实现windows下同名进程监控
Jun 21 Python
python控制nao机器人身体动作实例详解
Apr 29 Python
TensorFlow实现简单的CNN的方法
Jul 18 Python
python读写csv文件并增加行列的实例代码
Aug 01 Python
Jupyter notebook快速入门教程(推荐)
May 18 Python
Pycharm插件(Grep Console)自定义规则输出颜色日志的方法
May 27 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
JQuery的AJAX实现文件下载的小例子
2013/05/15 Javascript
js取float型小数点后两位数的方法
2014/01/18 Javascript
浅谈JavaScript中null和undefined
2015/07/09 Javascript
BootStrap学习系列之Bootstrap Typeahead 组件实现百度下拉效果(续)
2016/07/07 Javascript
AngularJS表单验证中级篇(3)
2016/09/28 Javascript
Vue.js划分组件的方法
2017/10/29 Javascript
基于node下的http小爬虫的示例代码
2018/01/11 Javascript
react组件从搭建脚手架到在npm发布的步骤实现
2019/01/09 Javascript
vue集成openlayers加载geojson并实现点击弹窗教程
2020/09/24 Javascript
区分vue-router的hash和history模式
2020/10/03 Javascript
在Django中创建URLconf相关的通用视图的方法
2015/07/20 Python
Python找出最小的K个数实例代码
2018/01/04 Python
Python使用matplotlib实现绘制自定义图形功能示例
2018/01/18 Python
基于Python log 的正确打开方式
2018/04/28 Python
pytorch cnn 识别手写的字实现自建图片数据
2018/05/20 Python
详解Python如何生成词云的方法
2018/06/01 Python
Python实现拷贝/删除文件夹的方法详解
2018/08/29 Python
如何利用Boost.Python实现Python C/C++混合编程详解
2018/11/08 Python
python实现的MySQL增删改查操作实例小结
2018/12/19 Python
python 通过类中一个方法获取另一个方法变量的实例
2019/01/22 Python
Django实现学生管理系统
2019/02/26 Python
如何利用pygame实现简单的五子棋游戏
2019/12/29 Python
Python自带的IDE在哪里
2020/07/01 Python
基于HTML5 Canvas:字符串,路径,背景,图片的详解
2013/05/09 HTML / CSS
GOLFINO英国官网:高尔夫服装
2020/04/11 全球购物
yy婚礼主持词
2014/03/14 职场文书
文体活动实施方案
2014/03/27 职场文书
文秘班元旦晚会活动策划方案
2014/08/28 职场文书
搞笑的爱情检讨书
2014/10/01 职场文书
2015年消防工作总结
2015/04/24 职场文书
2015年工会工作总结范文
2015/07/23 职场文书
2016优秀教师先进个人事迹材料
2016/02/25 职场文书
MySQL数据库压缩版本安装与配置详细教程
2021/05/21 MySQL
Feign调用全局异常处理解决方案
2021/06/24 Java/Android
一次SQL如何查重及去重的实战记录
2022/03/13 MySQL
Nginx实现会话保持的两种方式
2022/03/18 Servers