python中的split 和join 函式

2021-10-04 21:03:14 字數 812 閱讀 8013

split()函式

根據字串中有的字元對字串進行切片,然後轉化成列表

比如:

>> score_str=

"98,95,93,94"

>>

> temp_score_list = score_str.split(

",")

>>

> temp_score_list

['98'

,'95'

,'93'

,'94'

]>>

>

這段**中根據逗號對字串就行切片,轉化成列表

>>

> temp_score_list = score_str.split(

)>>

> temp_score_list

['98,95,93,94'

]>>

>

split()中無引數時,只轉換成列表

join()函式

也是分隔符,見每個元素,按照你輸入的進行分隔

>>

> score_str=

"98,95,93,94"

>>

>

print

(' '

.join(score_str))9

8,95

,93,

94>>

>

print(''

.join(score_str))98

,95,93

,94>>

>

都是自己的理解

python中strip和split的使用

strip 剝去,python strip 方法 python 字串 python 字串 描述 python strip 方法用於移除字串頭尾指定的字元 預設為空格 語法 strip 方法語法 str.strip chars 引數 chars 移除字串頭尾指定的字元。返回值 返回移除字串頭尾指定的字...

Python中strip和split的使用

strip 引數為空時,預設刪除開頭和結尾處的空白符,包括 n r t split 按字串 單個字元 全部分割 ipaddrx xx173.10.1.101 t n ipaddrx.strip x 刪除字串ipaddr中開頭和結尾處的x 173.10.1.101 t n ipaddrx.strip ...

Python中join 和 split詳解

join join將 容器物件 拆分並以指定的字元將列表內的元素 element 連線起來,返回字串 注 容器物件內的元素須為字元型別 a no pain no gain join a no pain no gain dict是以key值作連線 l join l h o n p t y dict 的...