Python 切割字串

內容說明

通常在寫程式時都會需要用到字串切割,那 Python 的字串切割要怎麼做呢?

Python String.split 切割字串函數

只要在 string.split() 就可以切割函數

通常會用到的有這幾種,如下:

1
2
3
4
str = "this is David and ...!!"
print(str.split()) # 用空格來切割
print(str.split("i",1)) # 以 i 來切割,但只切割第一次
print(str.split("a")) # 以 a 來切割,但不斷切割,直到字串結尾

參考連結

Python3 split()方法

心得

Python 好簡單,可以把一些比較麻煩的事情都解決掉,設計出 Python 的人是天才八,好感謝這個世界有這麼多人無私的奉獻才有辦法讓我自學努力到現在。

  • 版權聲明: 本部落格所有文章除有特別聲明外,均採用 Apache License 2.0 許可協議。轉載請註明出處!
  • © 2020-2024 John Doe
  • Powered by Hexo Theme Ayer
  • PV: UV: