python中字串的常用方法及特性

2021-10-01 12:24:46 字數 2053 閱讀 2304

『hello』.istitle() #判斷字串是否是標題(首字母大寫)

false

『hello』.isupper() #判斷字串是否是大寫(只要有乙個元素是小寫就會輸出false)

false

『hello』.isupper()

true

『hello』.islower() #判斷字串是否是小寫

a = 'hello'.upper()  #將字串變為全大寫

>>> a

>'hello'

>a = 'hello'.lower() #將字串變為全小寫

a = 'hello'.title()      #將字串變為標題(首字母大寫,其餘小寫)

>>> a

'hello'

a='hell3'

print(a.isalnum()) #是否是字母和數字

print(a.isalpha()) #是否是字母

2.1 判斷檔名稱的結尾

2.2 判斷檔名稱的開頭

print('爬取內容')

else:

print('不能爬取內容')

注意:去除左右兩邊的空格,空格為廣義的空格 包括:\t \n

s.lstrip() #hello字串的左邊是\t, lstrip()可以去除字串左邊的空格(\t)

s.lstrip() #hello字串的左邊是多個空格, lstrip()可以去除字串左邊的空格

s.lstrip() #hello字串的左右兩邊都是多個空格, lstrip()可以去除字串左邊的空格, rstrip()可以去除字串右邊的空格, strip()可以去除字串兩邊的空格

s.lstrip() #hello字串的左邊是乙個製表位, lstrip()可以去除字串左邊的廣義空格, strip()可以去除字串兩邊的廣義空格

s.lstrip() #hello字串的左邊是乙個製表位,右邊是乙個換行符, lstrip()可以去除字串左邊的廣義空格, strip()可以去除字串兩邊的廣義空格

s.strip() #helloh字串strip('h')去掉字串兩邊的h

s.strip() #helloh字串lstrip('h')去掉字串左邊的h

python中字串常用方法

str python string function 生成字串變數str python string function 字串長度獲取 len str 例 print s length d str,len str 一 字母處理 全部大寫 str.upper 全部小寫 str.lower 大小寫互換 s...

Python中字串常用的方法

python中字串常用的方法 information this is shanghai city,information1 it s very bustling aaa i come from and myhometown is print information.center 50,長度為50,並...

python中字串常用方法總結

字串的常用操作 1.大小寫轉換 str1 hellopythonhelloworld str2 hello python 999,hello world str3 hellopython,helloworld print str2.title 返回每個單詞首字母大寫,其他字母小寫的字串 print ...