sh 17 字串的查詢和替換

2022-07-18 02:42:12 字數 600 閱讀 7712

sh_17_字串的查詢和替換

hello_str = "

hello world"#

1. 判斷是否以指定字串開始

print(hello_str.startswith("

hello"))

#2. 判斷是否以指定字串結束

print(hello_str.endswith("

world"))

#3. 查詢指定字串

#index同樣可以查詢指定的字串在大字串中的索引

print(hello_str.find("

llo"))#

index如果指定的字串不存在,會報錯

#find如果指定的字串不存在,會返回-1

print(hello_str.find("

abc"))#

4. 替換字串

#replace方法執行完成之後,會返回乙個新的字串

#注意:不會修改原有字串的內容

print(hello_str.replace("

world

", "

python"))

print(hello_str)

字串 字串的查詢和替換

hello str hello world 1.判斷是否以指定字串開始 print hello str.startswith hello 2.判斷是否以指定字串結束 print hello str.endswith world 3.查詢指定字串 index同樣可以查詢指定的字串在大字串中的索引 pr...

字串練習17 字串判等

name 17 字串判等 author date 01 09 17 21 35 description 17 字串判等 檢視 提交 統計 提問 總時間限制 1000ms 記憶體限制 65536kb 描述判斷兩個由大小寫字母和空格組成的字串在忽略大小寫,且忽略空格後是否相等。輸入兩行,每行包含乙個字串...

南陽 113字串替換

時間限制 3000 ms 記憶體限制 65535 kb 難度 2 描述 編寫乙個程式實現將字串中的所有 you 替換成 we 輸入 輸入包含多行資料 每行資料是乙個字串,長度不超過1000 資料以eof結束 輸出對於輸入的每一行,輸出替換後的字串 樣例輸入 you are what you do 樣...