Python,刪除字串string中的一部分

2021-10-03 01:53:08 字數 513 閱讀 2116

刪除字串string中的一部分

string =

'abcdefghijklmnopqrstuvwxyz'

# 請使用 input

() 輸入索引 begin 和長度 length

begin=

int(

input()

)lengh=

int(

input()

)#從索引 begin 開始,長為 length 的字串刪除,並將剩下的字串內容輸出

str=

list

(string)

str=''.

join

(str)

a=str[begin:lengh+begin:1]

b=str.

replace

(a,''

)print

(b)

輸入的兩個數字分別是2,3

結果是abfghijklmnopqrstuvwxyz

Python 刪除字串

1 strip lstrip rstrip 方法,在沒有引數時,分別能刪除字串開頭或結尾 左邊的 右邊的空格,傳入引數時,分別能刪除字串開頭或結尾 左邊的 右邊的相關字串。whitespace stripping s hello world n s.strip hello world s.lstri...

Python刪除字串中的字元

用程式實現 刪除字串string中的一部分。string abcdefghijklmnopqrstuvwxyz 要求如下 1 分兩行輸入兩個整數,第乙個整數表示字串 string 的索引 begin,第二個整數表示需要刪除的長度 length。2 將字串 string 中,從索引 begin 開始,...

python字串 刪除末位字元(rstrip)

rstrip函式用於刪除字串末位指定字元,預設為空白符。語法str.rstrip chars 引數 返回值注意 示例str 我愛我的爸媽 n print 原字串 str print 刪除最後的空白符 換行和空格 str.rstrip 字串末位不是 爸媽 而是換行符和空格符,所以不會刪除 print ...