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装饰器使用的一些建议
Jun 03 Python
浅谈python迭代器
Nov 08 Python
使用python读取txt文件的内容,并删除重复的行数方法
Apr 18 Python
Python实现的爬取网易动态评论操作示例
Jun 06 Python
详解Python中的type和object
Aug 15 Python
浅谈python下tiff图像的读取和保存方法
Dec 04 Python
django框架基于模板 生成 excel(xls) 文件操作示例
Jun 19 Python
解决python replace函数替换无效问题
Jan 18 Python
python输出数学符号实例
May 11 Python
如何打包Python Web项目实现免安装一键启动的方法
May 21 Python
Python3爬虫中Ajax的用法
Jul 10 Python
如何基于python实现单目三维重建详解
Jun 25 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
2014年最新推荐的10款 PHP 开发框架
2014/08/01 PHP
PHP实现可自定义样式的分页类
2016/03/29 PHP
yii2.0整合阿里云oss删除单个文件的方法
2017/09/19 PHP
Laravel5.1框架路由分组用法实例分析
2020/01/04 PHP
20行代码实现的一个CSS覆盖率测试脚本
2013/07/07 Javascript
JavaScript改变HTML元素的样式改变CSS及元素属性
2013/11/12 Javascript
一个检测表单数据的JavaScript实例
2014/10/31 Javascript
js简单实现竖向tab选项卡的方法
2015/05/04 Javascript
鼠标悬停小图标显示大图标
2016/01/22 Javascript
Javascript中函数名.length属性用法分析(对比arguments.length)
2016/09/16 Javascript
js以及jquery实现手风琴效果
2020/04/17 Javascript
浅谈ng-zorro使用心得
2018/12/03 Javascript
从vue源码看props的用法
2019/01/09 Javascript
vue 通过绑定事件获取当前行的id操作
2020/07/27 Javascript
python基于multiprocessing的多进程创建方法
2015/06/04 Python
Python实现二维数组输出为图片
2018/04/03 Python
在cmder下安装ipython以及环境的搭建
2018/10/19 Python
python绘制简单彩虹图
2018/11/19 Python
Python: 传递列表副本方式
2019/12/19 Python
Pytorch 多块GPU的使用详解
2019/12/31 Python
aws 通过boto3 python脚本打pach的实现方法
2020/05/10 Python
Python代码中如何读取键盘录入的值
2020/05/27 Python
Django基于Models定制Admin后台实现过程解析
2020/11/11 Python
Python爬虫之Selenium下拉框处理的实现
2020/12/04 Python
尤妮佳moony海外旗舰店:日本殿堂级纸尿裤品牌
2018/02/23 全球购物
超级英雄、电影和电视、乐队和音乐T恤:Loud Clothing
2019/09/01 全球购物
幼师岗位求职简历的自荐信格式
2013/09/21 职场文书
好的自荐信包括什么内容
2013/11/07 职场文书
财务人员个人求职信范文
2013/12/04 职场文书
民间借贷协议书范本
2014/10/01 职场文书
《7的乘法口诀》教学反思
2016/02/18 职场文书
导游词之阳朔遇龙河
2019/12/16 职场文书
导游词之重庆渣滓洞
2020/01/08 职场文书
使用vue-element-admin框架从后端动态获取菜单功能的实现
2021/04/29 Vue.js
Java 中的 Unsafe 魔法类的作用大全
2021/06/26 Java/Android
vue elementUI批量上传文件
2022/04/26 Vue.js