我的编程空间,编程开发者的网络收藏夹
学习永远不晚

python编码转换实验

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

python编码转换实验

Python 2.6.6 (r266:84292, Jul 23 2015, 15:22:56) 

[GCC 4.4.7 20120313 (Red Hat 4.4.7-11)] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> print ord('A')

65

>>>     

... 

>>> a = {"a":"1","b","2"}

  File "<stdin>", line 1

    a = {"a":"1","b","2"}

                    ^

SyntaxError: invalid syntax

>>> a = {"a":"1","b":"2"}

>>> str(a)

"{'a': '1', 'b': '2'}"

>>> print a

{'a': '1', 'b': '2'}

>>> print type(a)

<type 'dict'>

>>> print type(str(a))

<type 'str'>

>>> b = [1,2,3]

>>> print type(b)

<type 'list'>

>>> print type(str(b))

<type 'str'>

>>> str(b)

'[1, 2, 3]'

>>> b.__class__

<type 'list'>

>>> str(b).__class__

<type 'str'>

>>> isinstance(a, str)

False

>>> isinstance(a, dict)

True

>>> isinstance(a, unicode)

False

>>> isinstance(a, utf-8)  

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

NameError: name 'utf' is not defined

>>> isinstance(a, 'utf-8')

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

TypeError: isinstance() arg 2 must be a class, type, or tuple of classes and types

>>> isinstance(a, type)   

False

>>> isinstance(a, unicode)

False

>>> isinstance(a, unicode)

False

>>> import chardet

>>> chardet.detect(a)

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

  File "/usr/lib/python2.6/site-packages/chardet/__init__.py", line 30, in detect

    u.feed(aBuf)

  File "/usr/lib/python2.6/site-packages/chardet/universaldetector.py", line 74, in feed

    if aBuf[:3] == codecs.BOM:

TypeError: unhashable type

>>> chardet.detect(str(a))

{'confidence': 1.0, 'encoding': 'ascii'}

>>> chardet.detect(str(b))

{'confidence': 1.0, 'encoding': 'ascii'}

>>> c = ["我","是"]

>>> chardet.detect(str(c))

{'confidence': 1.0, 'encoding': 'ascii'}

>>> print c

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> c.encode('unicode')

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

AttributeError: 'list' object has no attribute 'encode'

>>> str(c).encode('unicode')

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

LookupError: unknown encoding: unicode

>>> str(c).encode('utf-8')  

"['\\xe6\\x88\\x91', '\\xe6\\x98\\xaf']"

>>> d = str(c)

>>> chardet.detect(d)

{'confidence': 1.0, 'encoding': 'ascii'}

>>> chardet.detect(c)

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

  File "/usr/lib/python2.6/site-packages/chardet/__init__.py", line 30, in detect

    u.feed(aBuf)

  File "/usr/lib/python2.6/site-packages/chardet/universaldetector.py", line 108, in feed

    if self._highBitDetector.search(aBuf):

TypeError: expected string or buffer

>>> chardet.detect(d)

{'confidence': 1.0, 'encoding': 'ascii'}

>>> print d

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print dc

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

NameError: name 'dc' is not defined

>>> print c

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print d.decode('ascii')

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print type(d.decode('ascii'))

<type 'unicode'>

>>> print d.decode('ascii')      

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> chardet.detect(c.decode('ascii')

... )

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

AttributeError: 'list' object has no attribute 'decode'

>>> chardet.detect(d.decode('ascii'))

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

  File "/usr/lib/python2.6/site-packages/chardet/__init__.py", line 25, in detect

    raise ValueError('Expected a bytes object, not a unicode object')

ValueError: Expected a bytes object, not a unicode object

>>> type(d)

<type 'str'>

>>> print type(d.decode('ascii'))

<type 'unicode'>

>>>  print d.decode('ascii') 

  File "<stdin>", line 1

    print d.decode('ascii') 

    ^

IndentationError: unexpected indent

>>> print d.decode('ascii') 

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print d.decode('ascii').encode('utf-8')

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print d.decode('ascii').encode('utf-8')[0]

[

>>> print d.decode('ascii')  

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> e = d.decode('ascii')  

>>> print e

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> type(e)

<type 'unicode'>

>>> f = e.encode('utf-8')

>>> f

"['\\xe6\\x88\\x91', '\\xe6\\x98\\xaf']"

>>> print f

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> type(f)

<type 'str'>

>>> print f.decode("unicode_escape")

['', 'ˉ']

>>> print f.encode("raw_unicode_escape")

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print f.encode("raw_unicode_escape").decode('utf-8')

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print b

[1, 2, 3]

>>> print c

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print type(c)

<type 'list'>

>>> print type(d)

<type 'str'>

>>> print d

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> import syss

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

ImportError: No module named syss

>>> import sys

>>> reload(sys)

<module 'sys' (built-in)>

>>> sys.setdefaultencoding('utf-8')

>>> print d

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print type(c)

<type 'list'>

>>> print type(d)

<type 'str'>

>>> cc = ["我","是"]

>>> print cc

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print type(cc)

<type 'list'>

>>> dd = str(cc)

>>> pirnt dd

  File "<stdin>", line 1

    pirnt dd

           ^

SyntaxError: invalid syntax

>>> print dd

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print type(dd)

<type 'str'>

>>> chardet.detect(d)

{'confidence': 1.0, 'encoding': 'ascii'}

>>> chardet.detect(dd)

{'confidence': 1.0, 'encoding': 'ascii'}

>>> sys.defaultencoding()

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

AttributeError: 'module' object has no attribute 'defaultencoding'

>>> sys.defaultencoding

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

AttributeError: 'module' object has no attribute 'defaultencoding'

>>> sys.defaultencode

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

AttributeError: 'module' object has no attribute 'defaultencode'

>>> sys.defaultencode()

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

AttributeError: 'module' object has no attribute 'defaultencode'

>>> sys.defaultencoding()

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

AttributeError: 'module' object has no attribute 'defaultencoding'

>>> sys.defaultencode

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

AttributeError: 'module' object has no attribute 'defaultencode'

>>> q = '中国'

>>> type(q)

<type 'str'>

>>> chardet.detect(q0

... )

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

NameError: name 'q0' is not defined

>>> chardet.detect(q)

{'confidence': 0.75249999999999995, 'encoding': 'utf-8'}

>>> p = ['中国', '复兴']

>>> chardet.detect(p)   

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

  File "/usr/lib/python2.6/site-packages/chardet/__init__.py", line 30, in detect

    u.feed(aBuf)

  File "/usr/lib/python2.6/site-packages/chardet/universaldetector.py", line 108, in feed

    if self._highBitDetector.search(aBuf):

TypeError: expected string or buffer

>>> chardet.detect(str(p))

{'confidence': 1.0, 'encoding': 'ascii'}

>>> print type(dd)

<type 'str'>

>>> print dd.decode('unicode_escape')

['', 'ˉ']

>>> print type(dd.decode('unicode_escape'))

<type 'unicode'>

>>> dd

"['\\xe6\\x88\\x91', '\\xe6\\x98\\xaf']"

>>> print dd

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print dd.encode('raw_unicode_escape')

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print type(dd.encode('raw_unicode_escape'))

<type 'str'>

>>> print type(dd.encode('raw_unicode_escape').decode('utf-8'))

<type 'unicode'>

>>> print type(dd.encode('raw_unicode_escape').decode('utf-8')

... )

<type 'unicode'>

>>> print dd

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print dd, type(dd)

['\xe6\x88\x91', '\xe6\x98\xaf'] <type 'str'>

>>> print dd.encode('raw_unicode_escape'), type(dd.encode('raw_unicode_escape'))

['\xe6\x88\x91', '\xe6\x98\xaf'] <type 'str'>

>>> print dd.decode('utf-8'), type(dd.decode('utf-8')

... )

['\xe6\x88\x91', '\xe6\x98\xaf'] <type 'unicode'>

>>> print dd.decode('utf-8')

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print dd

['\xe6\x88\x91', '\xe6\x98\xaf']

>>> print ee

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

NameError: name 'ee' is not defined

>>> ee = u"dd"

>>> ee = u"['\xe6\x88\x91', '\xe6\x98\xaf']"

>>> print ee

['', 'ˉ']

>>> ee

u"['\xe6\x88\x91', '\xe6\x98\xaf']"

>>> ee = [u'中国', u'复兴']

>>> type(ee)

<type 'list'>

>>> print ee

[u'\u4e2d\u56fd', u'\u590d\u5174']

>>> print str(ee)

[u'\u4e2d\u56fd', u'\u590d\u5174']

>>> printee

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

NameError: name 'printee' is not defined

>>> print ee

[u'\u4e2d\u56fd', u'\u590d\u5174']

>>> print json.dumps(ee).decode('unicode_escape')

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

NameError: name 'json' is not defined

>>> import json

>>> print json.dumps(ee).decode('unicode_escape')

["中国", "复兴"]

>>> print str(ee).decode('unicode_escape')       

[u'中国', u'复兴']

>>> x = '中国'

>>> print x

中国

>>> x

'\xe4\xb8\xad\xe5\x9b\xbd'

>>> type(x)

<type 'str'>

>>> chardet.detect(x)

{'confidence': 0.75249999999999995, 'encoding': 'utf-8'}

>>> y = x.decode('utf-8')

>>> y

u'\u4e2d\u56fd'

>>> print y

中国

>>> chardet.detect(y)    

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

  File "/usr/lib/python2.6/site-packages/chardet/__init__.py", line 25, in detect

    raise ValueError('Expected a bytes object, not a unicode object')

ValueError: Expected a bytes object, not a unicode object

>>> x

'\xe4\xb8\xad\xe5\x9b\xbd'

>>> x = '\xe4\xb8\xad\xe5\x9b\xbd'

>>> print x

中国

>>> x

'\xe4\xb8\xad\xe5\x9b\xbd'

>>> x = u'\xe4\xb8\xad\xe5\x9b\xbd'

>>> print x

-

>>> x.decode('utf-8')

u'\xe4\xb8\xad\xe5\x9b\xbd'

>>> print x.decode('utf-8')

-

>>> chardet.detect(x)

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

  File "/usr/lib/python2.6/site-packages/chardet/__init__.py", line 25, in detect

    raise ValueError('Expected a bytes object, not a unicode object')

ValueError: Expected a bytes object, not a unicode object

>>> print type(x)

<type 'unicode'>

>>> x

u'\xe4\xb8\xad\xe5\x9b\xbd'

>>> pirnt x

  File "<stdin>", line 1

    pirnt x

          ^

SyntaxError: invalid syntax

>>> print x

-

>>> print x.encode('raw_unicode_escape')

中国

>>> y = x.encode('raw_unicode_escape')  

>>> y

'\xe4\xb8\xad\xe5\x9b\xbd'

>>> type y

  File "<stdin>", line 1

    type y

         ^

SyntaxError: invalid syntax

>>> type(y)

<type 'str'>

>>> print y

中国

>>> chardet.detect(y)

{'confidence': 0.75249999999999995, 'encoding': 'utf-8'}

>>> z = y.encode('utf-8')

>>> print z

中国

>>> z 

'\xe4\xb8\xad\xe5\x9b\xbd'

>>> y

'\xe4\xb8\xad\xe5\x9b\xbd'

>>> type(z)

<type 'str'>

>>> type(y)

<type 'str'>

>>> chardet.detect(y)    

{'confidence': 0.75249999999999995, 'encoding': 'utf-8'}

>>> y

'\xe4\xb8\xad\xe5\x9b\xbd'

>>> z = y.encode('utf-8')

>>> z = y.decode('utf-8')

>>> z

u'\u4e2d\u56fd'

>>> print z

中国

>>> type(z)

<type 'unicode'>

>>> a 

u'\xe4\xb8\xad\xe5\x9b\xbd'

>>> f='\u53eb\u6211'  

>>> print f

\u53eb\u6211

>>> f

'\\u53eb\\u6211'

>>> type(f)

<type 'str'>

>>> chardet.detect(f)

{'confidence': 1.0, 'encoding': 'ascii'}

>>> f.decode('ascii')

u'\\u53eb\\u6211'

>>> print f.decode('ascii')

\u53eb\u6211

>>> f.decode('unicode_escape')

u'\u53eb\u6211'

>>> print f.decode('unicode_escape')

叫我

>>> sys.getdefaultencoding()

'utf-8'

>>> dd = { 'name': u'功夫熊猫' }

>>> print dd

{'name': u'\u529f\u592b\u718a\u732b'}

>>> dd

{'name': u'\u529f\u592b\u718a\u732b'}

>>> dd2 = { 'name': '功夫熊猫' }

>>> dd2

{'name': '\xe5\x8a\x9f\xe5\xa4\xab\xe7\x86\x8a\xe7\x8c\xab'}

>>> print simplejson.dumps(dd, ensure_ascii=False)

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

NameError: name 'simplejson' is not defined

>>> print json.dumps(dd, ensure_ascii=False)      

{"name": "功夫熊猫"}

>>> print json.dumps(dd2, ensure_ascii=False)

{"name": "功夫熊猫"}

>>> print dd2

{'name': '\xe5\x8a\x9f\xe5\xa4\xab\xe7\x86\x8a\xe7\x8c\xab'}

>>> 


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

python编码转换实验

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

python编码转换实验

Python 2.6.6 (r266:84292, Jul 23 2015, 15:22:56) [GCC 4.4.7 20120313 (Red Hat 4.4.7-11)] on linux2Type "help", "copyrigh
2023-01-31

Python编码转换

Python常用的编码格式有3种:unicode,utf-8,gbk有些时候因为某些需要,就例如我们用的是utf-8的编码格式编写的脚本,需要在Windows终端中运行,而Windows终端默认的编码格式是GBK,这时候我们就要把编码转换一
2023-01-31

python编码转换(unicode /

点击(此处)折叠或打开 #-*- coding: utf-8 -*-import sys                                                 print sys.getfilesystemenco
2023-01-31

Python 转换文本编码

前段时间入手了一个Sony PRS-505的阅读器,不过因为汉化的原因,折腾了很久,终于全部搞定了。麻烦的是505认得最好的编码方式为utf-8,如果是unicode,当文件大于5M时就容易出现问题。所以许多大的txt文档都要转换成utf-
2023-01-31

python中文转换url编码(转)

今天修改一个天气预报的东西,但输入城市不能得到天气预报,感觉是编码不对,因为你输入一个城市(比如‘杭州’),url的地址编码却是'%E4%B8%BD%E6%B1%9F',因此需 要做一个转换。这里我们就用到了模块urllib。>>> imp
2023-01-31

python 字符编码与转换

unicode 中文英文默认统一 2个字节ASCII 只有英文和特殊字符 每个占用1个字节 不能存中文每个字节由8个比特(Bit)构成假如一个英文文档是2M,转换为unicode 编码转换,就变成了4M为了解决空间浪费的问题,在unicod
2023-01-30

python中文转换url编码

今天要处理百度贴吧的东西。想要做一个关键词的list,每次需要时,直接添加 到list里面就可以了。但是添加到list里面是中文的情况(比如‘丽江’),url的地址编码却是'%E4%B8%BD%E6%B1%9F',因此需 要做一个转换。这里
2023-01-31

python黑魔法之编码转换

我们在使用其他语言的库做编码转换时,对于无法理解的字符,通常的处理也只有两种(或三种):抛异常替换成替代字符跳过但是在复杂的现实世界中,由于各种不靠谱,我们处理的文本总会出现那么些不和谐因素,比如混合编码。在这种情况下,又回到了上面的处理办
2022-06-04

python实现中文转换url编码的方法

本文实例讲述了python实现中文转换url编码的方法。分享给大家供大家参考,具体如下: 今天要处理百度贴吧的东西。想要做一个关键词的list,每次需要时,直接添加 到list里面就可以了。但是添加到list里面是中文的情况(比如‘丽江')
2022-06-04

Python 编码转换与中文处理

Python 编码转换与中文处理python 中的 unicode是让人很困惑、比较难以理解的问题. utf-8是unicode的一种实现方式,unicode、gbk、gb2312是编码字符集.decode是将普通字符串按照参数中的编码格式
2023-01-31

python字符串编码如何转换

Python中字符串的编码转换可以使用`encode`和`decode`方法。具体的操作如下:1. 字符串编码:使用`encode`方法将字符串转换为指定编码的字节序列。可以指定的编码包括`utf-8`、`gbk`等。示例如下:```pyt
2023-09-13

python实现unicode转中文及转换默认编码的方法

本文实例讲述了python实现unicode转中文及转换默认编码的方法。分享给大家供大家参考,具体如下: 一、在爬虫抓取网页信息时常需要将类似"u4ebau751fu82e6u77eduff0cpyu662fu5cb8"转换为中文,实际上这
2022-06-04

python中json和字符编码的转换

json是用来转换python object 和json format 的,字符编码有gb2312,gb18030/gbk,utf-8等。在 Python 中出现的 str 都是用字符集编码的 ansi 字符串。Python 本身并不知道
2023-01-31

python字符串与url编码的转换

主要应用的场景 爬虫生成带搜索词语的网址1.字符串转为url编码import urllibpoet_name = "李白"url_code_name = urllib.quote(poet_name)print url_code_name#
2023-01-31

python妙用之编码的转换详解

前言 记得刚入门那个时候,自己处理编码转换问题往往是“百度:url解码、base64加密、hex……”,或者是使用一款叫做“小葵多功能转换工具”的软件,再后来直接上Burpsuite的decoder功能,感觉用的还挺好的。不过,也遇到些问题
2022-06-04

Python编码类型转换方法详解

本文实例讲述了Python编码类型转换方法。分享给大家供大家参考,具体如下: 1:Python和unicode 为了正确处理多语言文本,Python在2.0版后引入了Unicode字符串。 2:python中的print 虽然python内
2022-06-04

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录