字符串和编码
- Python3 字符串是以Unicode编码
- 字符的表示转换函数
- ord()
- chr()
- str变为bytes方法
- ’中文’.encode(‘utf-8’)
- ‘abc’.encode(‘ascii’)
- bytes变为str方法
- b’ABC’.decode(‘ascii’)
- b’xe4xb8xadxe6x96x87’.decode(‘utf-8’)
- 注意!中文不能转为ascii编码
- len()函数
- 计算str包含多少个字符
- len(‘abc’)
- len(‘中文’)
- 保存源代码时,通常要在文件开头加上两行:
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
- 格式化
- 与C语言一致
- ‘hello,%s’ % ‘world’
- ‘hi,%s,you have $%d’ % (‘lily’,100)
- 如果不确定数据类型是什么,%s永远起作用
练习
小明的成绩从去年的72分提升到了今年的85分,请计算小明成绩提升的百分点,并用字符串格式化显示出’xx.x%’,只保留小数点后1位:
# !/usr/bin/env python3
# -*- coding: utf-8 -*-
s1 = 72
s2 = 85
r = (85 - 72) / 72 * 100
print('%0.1f%%' % r)