python字串操作方法

2021-10-04 14:16:19 字數 1533 閱讀 4264

一、hello world

hello

oworld

s1 = 'hello world' 

s3='''

hell

oworld

'''print(s1,s3,end='')

二、 'hello world!'

\hello,world!\

s1 = '\'hello world!\''

s2 = '\n\\hello,world!\\\n'

print(s1,s2,end='')

三、\'hello,world!\'    \n\\hello,world!\\\n

s1 = r'\'hello,world!\''

s2 = r'\n\\hello,world!\\\n'

print(s1,s2,end='')

四、hellohellohello

s1 = 'hello' * 3

print(s1)

五、hellohellohelloworld

s1 = 'hello' * 3

s2='world'

s1 += s2

print(s1)

六、true

s1 = 'hello' * 3

s2='world'

s1 += s2

print('ll' in s1)

七、false

s1 = 'hello' * 3

s2='world'

s1 += s2

print('good' in s1) # false

八、字串擷取,python字串擷取的原則是前閉後開,即切取字串為開始索引到結束索引-1內的字串

如:print(str2[2:5]) #輸出為c12。字串擷取的第三個引數是間隔數

# 從字串中取出指定位置的字元(下標運算)

print(str2[2]) # c

# 字串切片(從指定的開始索引到指定的結束索引)

print(str2[2:5]) # c12

print(str2[2:]) # c123456

print(str2[2::2]) # c246

print(str2[::2]) # ac246

print(str2[::-1]) # 654321cba

print(str2[-1::-1] #654321cba

print(str2[-3:-1]) # 45

Python 字串操作方法

1.capitalize 把字串的第乙個字元改為大寫 2.casefold 把整個字串的所有字元改寫小寫 3.center width 將字串居中,並使用空格填充至長度width的新字串 4.count sub start end 返回sub在字串裡面出現的次數,start和end引數表示範圍,可選...

python 字串操作方法

字串物件的操作方法 序列操作方法 內建函式或表示式,如lenth 和型別特定方法 物件方法呼叫,如s.find 說明 模式 pattern 匹配是指正規表示式,re模組。而文字串分隔符就是簡單的字串。字串分割 str.split python內建函式,返回值為列表,只能傳入單一的文字串分隔符,如st...

字串操作方法

indexof 返回查詢某乙個字串第一次出現的下標 定義字串 string.indexof 要查詢的字串 從哪一下標開始 返回第一次出現的下標 slice 擷取字串兩個引數第乙個是開始的下標,第二個是結束的下標,如果第乙個引數是負數就是倒數下標。str.slice 開始的位置,結束的位置 split...