python3 例項 刪除字串2

2021-10-20 18:24:14 字數 1472 閱讀 6281

給你乙個字串s,要求你將字串**現的所有"gzu"(不區分大小寫)子串刪除,輸出刪除之後的s。

就是說出現「gzu」、「gzu」、「gzu」、"gzu"都可以刪除

輸入輸出樣例:gzzgzukkgzuuu

輸出樣例#:gzzkkuu

解1:

import re

s=input()

s=re.sub(r'gzu',''

,s,flags=re.ignorecase)

print

(s)

解2

s=

input()

y=s.lower()x=

y=y.replace(

'gzu'

,',,,'

)for i in

range

(len

(s)):if

list

(y)[i]

.isalpha():

list

(s)[i]

)print(""

.join(x)

)

解3

a=

input()

s=a.lower(

)s=s.replace(

'gzu'

,',,,'

)list1=

for i in

range

(len

(a)):if

list

(s)[i]

!=','

:list

(a)[i]

)print(''

.join(list1)

)

解4

print

(input()

.replace(

"gzu",""

).replace(

"gzu",""

).replace(

"gzu",""

).replace(

"gzu",""

).replace(

"gzu",""

).replace(

"gzu",""

).replace(

"gzu",""

).replace(

"gzu",""

))解5```python

import re

s=input()

i=['gzu'

,'gzu'

,'gzu'

,'gzu'

,'gzu'

,'gzu'

,'gzu'

,'gzu'

]for j in i:

s=re.sub(j,

'',s)

print

(s)

python 3 比較字串

def cmp str first,second,druge 1 比較兩個字串或者字串列表是否相等 第乙個引數是輸入的第乙個字串或者列表 第二個引數是輸入的第二個字串或者列表 第三個引數是比較對應的列表字串還是比較列表中字串的內容 if druge 1 if len first len second...

python3學習 2 容器和字串

引號 print h e llo print h e llo print hello world print hello world 運算 print abc def print abc 3 string abcdefg print string abcdefg print string 3 def...

python3中字串問題

在python3中,bytes string和unicodestring是兩種不同的型別。由於python3中,字串str在記憶體中是以unicode表示,乙個字元對應多個位元組。如果在網上傳輸,就需要將str轉化為以位元組為單位的bytes。例如,在做套接字試驗時,客戶端與服務端經行資料傳輸時,不...