print(len('张'.encode('utf8'))) print(len('A'.encode('utf8'))) # 结果 3 1 1. 2. 3. 4. 5. 由此可知,1个中文字符经过utf8编码后为3字节,1个英文字符经过utf8编码后为1字节 3 python文件开头要写清楚编码 #!/usr/bin/env python3 # -*- coding: utf-8 -*- 1. 2. 编辑器保存格...