请将'Python程序设计开发宝典'字符串用'进行如下操作: 1 用'utf8'编码,并打印出来。 2 用'utf8'解码,并打印出来
时间: 2024-01-11 12:05:47 浏览: 58
1. 用'utf8'编码,并打印出来:
```python
s = 'Python程序设计开发宝典'
encoded_s = s.encode('utf8')
print(encoded_s)
```
输出结果为:
```
b'Python\xe7\xa8\x8b\xe5\xba\x8f\xe8\xae\xbe\xe8\xae\xa1\xe5\xbc\x80\xe5\x8f\x91\xe5\xae\x9d\xe5\x85\xb8'
```
2. 用'utf8'解码,并打印出来:
```python
encoded_s = b'Python\xe7\xa8\x8b\xe5\xba\x8f\xe8\xae\xbe\xe8\xae\xa1\xe5\xbc\x80\xe5\x8f\x91\xe5\xae\x9d\xe5\x85\xb8'
decoded_s = encoded_s.decode('utf8')
print(decoded_s)
```
输出结果为:
```
Python程序设计开发宝典
```
阅读全文