python字符串前缀 u的意思

本文介绍了Python中Unicode字符串的创建方法及初始化过程。详细解释了如何从编码字符串创建Unicode对象,包括默认编码方式和错误处理策略。同时,还探讨了原始字符串与Unicode编码的区别。

以r或R开头的python中的字符串表示(非转义的)原始字符串

u'string'  表示 已经是 unicode 编码的 'string' 字符串
而 unicode('string') 是 即将要把 'string' 转化为 unicode 编码(但在执行这条语句之前,还不一定是unicode编码)
文件开始,是整体中的字符编码。一般使用 #coding:utf-8  最好还是使用utf-8

unicode 初始化 源码

1
2
3
4
5
6
7
8
9
10
11
    def __init__(self, string=u'', encoding=None, errors='strict'): # known special case of unicode.__init__
        """
        unicode(object='') -> unicode object
        unicode(string[, encoding[, errors]]) -> unicode object
         
        Create a new Unicode object from the given encoded string.
        encoding defaults to the current default string encoding.
        errors can be 'strict', 'replace' or 'ignore' and defaults to 'strict'.
        # (copied from class doc)
        """
        pass

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值