Python 字符串处理常用函数
- 大小写
举例:name = 'hello sushi'
name.lower() # 小写 hello sushi
name.upper() # 大写 HELLO SUSHI
name.title() # 单词首字母大写 Hello Sushi
2.去空格
去开头空格 “ 李白”.rstrip()
去末尾空格 “ 李白 ”.lstrip()
去头尾空格 “ 李白 ”.strip()
Python 字符串处理常用函数
2.去空格
去开头空格 “ 李白”.rstrip()
去末尾空格 “ 李白 ”.lstrip()
去头尾空格 “ 李白 ”.strip()
本文标题:字符串处理
本文链接:https://www.haomeiwen.com/subject/ypmrgftx.html
网友评论