列表去除前後空格

2021-09-12 11:50:38 字數 564 閱讀 8294

list_1 = ['   qqqq   ',  '    fffff   ', '    vvvvv     ']

print(li)

for i in range(len(list_1)):

li[i] = li[i].replace(' ','')

print(li)

結果: 

replace()方法返回當前old換成new,可選擇的替代限制到最大數量的字串的副本。

語法: 

str.replace(old, new[, max])

引數 old – 這是要進行更換的舊子串。 

new – 這是新的子串,將取代舊的子字串(子串可以為空)。 

max – 如果這個可選引數max值給出,僅第一計數出現被替換。 

返回值 

此方法返回字串的拷貝與舊子串出現的所有被新的所取代。如果可選引數最大值給定,只有第乙個計數發生替換。 

去除空格求和

題目 任意輸入一行數字和空格,求其中數字的總和,然後輸出 c語言實現 include include int main ungetc ch,stdin printf 結果是 d sum printf n return 0 scanf d i 1這一迴圈條件保證了判斷是否輸入結束的條件,只有條件不滿足...

去除string字串前後的空格製表符

tchar szskipedchars text x3000 t tstring strcurdomain text t abcd strcurdomain.erase 0,strcurdomain.find first not of szskipedchars strcurdomain.erase...

Python去除字串前後空格的幾種方法

其實如果要去除字串前後的空格很簡單,那就是用strip 簡單方便 a bc strip a bc 如果不允許用strip 的方法,也是可以用正則匹配的方法來處理。s1 a bc s2 a bc s3 a bc s4 a bc def trim s import re if s.startswith ...