Python中split 與join 的使用

2022-10-06 23:00:32 字數 730 閱讀 6536

split() - 拆分方法:

格式:string.split(str="", num)

作用:以str為分割符拆分string,str如不填寫則預設包含空格,'\n','\t','\r'。如果num有指定值,則拆分為num+1個子字串。

例如:

結果3個元素

結果4個元素

關於split()使用方法的擴充套件:

split('[')[1].split(']')[0]  指輸出 [ 之後,] 之前的字串

split('.')[1] 指輸出1之後的字串

split('_')[1:5] 指輸出從第乙個_到第五個_之前的字串,並用_分割開

join() - 拼接方法:

格式:string.join(seq)

作用:以string作為分隔符,將seq中所有元素合併為乙個新字串,seq可以是列表,元組,字典。

切片

python中split 函式講解

本文講述的是string.split s sep maxsplit 針對string型別的split 函式。它主要是切割字串,結果返回由字串元素組成的乙個列表,具體怎麼使用看下面的 1.無引數的情況 a my name is zhangkang b my nname nis nzhangkang c...

Python之strip與split函式

一 strip函式原型 宣告 s為字串,rm為要刪除的字串行 s.strip rm 刪除s字串中開頭 結尾處,位於rm刪除序列的字元 s.lstrip rm 刪除s字串中開頭處,位於 rm刪除序列的字元 s.rstrip rm 刪除s字串中結尾處,位於 rm刪除序列的字元 如下 a hheloooo...

join mysql 版本 MySql中的join

建立表 create table t2 id int 11 not null,a int 11 default null,b int 11 default null,primary key id key a a engine innodb drop procedure idata delimiter...