字符串函数
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'
---------------------
转载,仅作分享,侵删
作者:wangprince2017
原文:https://blog.csdn.net/u010608296/article/details/85124169
|
|