Python3学习笔记-字符串和编码

字符串函数
ord( )函数将字符转换为编码 
chr( )函数将编码转换为字符
    >>> ord('E')
    69
    >>> chr(85)
    'U'

encode( ‘utf-8’)函数将便于表示的str类型转换为便于存储和传输的bytes类型(encode编码) 
decode(‘utf-8’ )函数将便与存储和传输的bytes类型转换为便于表示的str类型(decode解码
    >>> '潇'.encode('utf-8' )
    b'\xe6\xbd\x87'
    >>> b'\xe6\xbd\x87'.decode('utf-8')
    '潇'

len( )计算str类型字符的字符数或bytes类型的字节数
    >>> len('潇')
    1
    >>> len('潇'.encode('utf-8')
    3

输出格式化
格式化输出需要用占位符代替输入的内容 
ps:需要输出 % 时,用 %% 表示
占位符    类型
%d    整数
%f    浮点数
%s    字符串
%x    十六位制整数
    >>> 'the amount of people is %d, %.2f%% are %s'%(100, 56.0, 'men')
    'the amount of people is 100, 56.00% are men'
 

Python3学习笔记-字符串和编码_第1张图片

你可能感兴趣的:(Python)