欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python中字符串编码的转换

程序员文章站 2024-02-22 15:59:28
...
#字符串编码转换
b = '你好'
a = b.encode()
print(a)
# 解码
c = a.decode('utf-8')
print(c)

结果

b’\xe4\xbd\xa0\xe5\xa5\xbd’
你好

format用法

a = 'yao is a {} good man'.format(1)
print(a)

b = 'hello {} word {}'.format('python',2)
print(b)

结果

yao is a 1 good man
hello python word 2

相关标签: python