VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > python爬虫 >
  • python的字符串内建函数5

Python lower()方法
Python lower() 方法转换字符串中所有大写字符为小写。
>>> str="HELLO,WORLD!";str.lower()
'hello,world!'


Python upper() 
Python upper() 方法将字符串中的小写字母转为大写字母。
>>> str="hello,world!";str.upper()
'HELLO,WORLD!'

Python3 replace()方法
描述
replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。
str.replace(old, new[, max])
>>> str="aaaaaa";str.replace("a","b",3)
'bbbaaa'

Python lstrip()方法
描述
lstrip() 方法用于截掉字符串左边的空格或指定字符。
>>> str="   china   ";
print(str.lstrip()+"尾部字符")
china   尾部字符



相关教程