python第二课
Python 的字符串内建函数 的字符串常用内建函数: 1 、 大小写转换: str. # 首字母转大写 ’Hello world’ ’HELLOWORLD’ ’ HELLOWORLD’ ”hello world” 2 、对齐方式: 右对齐 居中 为填充的字符,默认为空格。 print (str.ljust( 20 )) (str.center( 40 )) 3 、 count (str, beg=0,end=len(string)) 在 string 里面出现的次数 print (str.count( "o" )) title() : 所有单词都是以大写开始,其余字母均为小写( 见istitle()) print (str.title()) 4 、 len(string): 返回字符串长度 区别: str "hello world" print (str. __len__ ()) # 依赖于类 print ( len # 不依赖于类 5 、求最大/小值 \ min(str): 中最大\最小的字母。 >>> "hello world" ’w ’ 6、 查找 find str.find( "el" ) rfind :类似于 find() 函数,但是从右边开始查找. index 跟find() 方法一样 rindex 类似于 index() ,但是从右边开始. 7.去除空格