Python字符串操作

Python字符串操作

字符串转换

序号 功能 方法 备注
1 去除首尾空格 s.strip()
2 查找字符串 s.index(sub_string) 小于0为未找到
3 比较字符串 cmp(str1, str2)
4 小写 str1.lower()
5 大写 str1.upper()
6 翻转字符串 str1[::-1]