**strip 剝去,
python strip()方法**
python 字串 python 字串
描述 python strip() 方法用於移除字串頭尾指定的字元(預設為空格)。
語法 strip()方法語法:
str.strip([chars]);
引數 chars – 移除字串頭尾指定的字元。
返回值
返回移除字串頭尾指定的字元生成的新字串。
****spilt分割
python stplit()方法**
描述 python split()通過指定分隔符對字串進行切片,如果引數num 有指定值,則僅分隔 num 個子字串
語法 split()方法語法:
str.split(str=」「, num=string.count(str)).
引數 str – 分隔符,預設為所有的空字元,包括空格、換行(\n)、製表符(\t)等。
num – 分割次數。
返回值
返回分割後的字串列表。
輸入
'+tree chip_tb_soc 1'.strip()[0]
'+tree chip_tb_soc 1'.split()[0]
分別會輸出
'+''+tree'
這裡strip將字串兩側的空格去掉,然後取第一位
這裡split依據空格將字串切片,然後取第一部分
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中 strip 的使用
恰好這兩天用到這個函式,看到網上的介紹都比較簡略,而且表述也不太對。自己試了試,對它有了更深刻的理解。簡介 strip 函式可以移除字串中指定的字元,像這樣 a n t1339jfsiao n t a.strip 1339jfsiao 可以看到當我們不設定strip的引數的時候,預設下該函式刪除了字...
python中strip的用法
python中strip用於移除字串頭尾指定的字元 預設為空格或換行符 或字串行。注意 該方法只能刪除開頭或是結尾的字元,不能刪除中間部分的字元。如下 a i am a student print a.strip i 去除開始的 i am a student print a.strip i tn 去...