python中strip、startswith、endswith
生活随笔
收集整理的這篇文章主要介紹了
python中strip、startswith、endswith
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
python中strip、startswith、endswith
strip(rm)用來刪除元素內的空白符:
rm對應要刪除空白符的元素,當rm為空(strip())時刪除所有元素的空白符
startswith、endswith用來查找開頭或結尾條件的元素
例子:
1 li = ["alec", " aric", "Alex", "Tony", "rain"]2 tu = ("alec", " aric", "Alex", "Tony", "rain") 3 dic = {'k1': "alex", 'k2': ' aric', "k3": "Alex", "k4": "Tony"}4 for i in li:5 b = i.strip()6 if (b.startswith("a") or b.startswith("A")) and b.endswith("c"):7 print(b)8 9 for i in tu: 10 b = i.strip() 11 if (b.startswith("a") or b.startswith("A")) and b.endswith("c"): 12 print(b) 13 14 for i in dic: 15 b = dic[i].strip() 16 if (b.startswith("a") or b.startswith("A")) and b.endswith("c"): 17 print(b)上面代碼:查找以 a或A開頭并且以 c 結尾的所有元素,并輸出
輸出結果:
alec aric alec aric aric posted on 2019-04-09 10:22 恒笛 閱讀(...) 評論(...) 編輯 收藏轉載于:https://www.cnblogs.com/xwqhl/p/10675307.html
總結
以上是生活随笔為你收集整理的python中strip、startswith、endswith的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql中SQL查询优化方法总结
- 下一篇: Java—网络编程相关概念