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

Python rstrip()方法

 

描述

rstrip() 删除 string 字符串末尾的指定字符(默认为空格).

 

str.rstrip([chars])

 

str="   china   ";

print(str.rstrip()+"尾部字符")

       

   china尾部字符

Python strip()方法

该方法只能删除开头或是结尾的字符,不能删除中间部分的字符。

 

str="   china   ";

print(str.strip()+"尾部字符")

       

china尾部字符

Python  swapcase()方法

swapcase() 方法用于对字符串的大小写字母进行转换。

str.swapcase();

 str="hello,WORLD!";

print(str.swapcase())

       

HELLO,world!

Python title()方法

Python title() 方法返回"标题化"的字符串,就是说所有单词的首个字母转化为大写,其余字母均为小写

 

 str="hello,world!";

print(str.title())

       

Hello,World!




相关教程