zoukankan      html  css  js  c++  java
  • python3中bytes与string的互相转换

    首先来设置一个原始的字符串,

    Python 3.2.3 (default, Apr 11 2012, 07:15:24) [MSC v.1500 32 bit (Intel)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> website = 'http://www.cnblogs.com/txw1958/'
    >>> type(website)
    <class 'str'>
    >>> website
    'http://www.cnblogs.com/txw1958/'
    >>>

    按utf-8的方式编码,转成bytes

    >>> website_bytes_utf8 = website.encode(encoding="utf-8")
    >>> type(website_bytes_utf8)
    <class 'bytes'>
    >>> website_bytes_utf8
    b'http://www.cnblogs.com/txw1958/'
    >>>

    按gb2312的方式编码,转成bytes

    >>> website_bytes_gb2312 = website.encode(encoding="gb2312")
    >>> type(website_bytes_gb2312)
    <class 'bytes'>
    >>> website_bytes_gb2312
    b'http://www.cnblogs.com/txw1958/'
    >>>

    解码成string,默认不填

    >>> website_string = website_bytes_utf8.decode()
    >>> type(website_string)
    <class 'str'>
    >>> website_string
    'http://www.cnblogs.com/txw1958/'
    >>>
    >>>

    解码成string,使用gb2312的方式

    >>> website_string_gb2312 = website_bytes_gb2312.decode("gb2312")
    >>> type(website_string_gb2312)
    <class 'str'>
    >>> website_string_gb2312
    'http://www.cnblogs.com/txw1958/'
    >>>
  • 相关阅读:
    redis 数据类型 Hash
    redis有序集合类型sort set
    redis数据类型set
    redis的 list
    redis的key
    centos安装redis
    input聚焦事件
    width(),innerWidth(),outerWidth(),outerWidth(true)
    jq 选择器
    详解CSS中:nth-child的用法_大前端
  • 原文地址:https://www.cnblogs.com/lanzhi/p/6468162.html
Copyright © 2011-2022 走看看