1. 程式人生 > >python strip() 方法

python strip() 方法

blog 方法 play print opened clas style class log

strip() 用於移除 字符串 首尾指定的字符, 默認是移除空格

用法 :

s.strip(‘參數‘)

實例 1 str = "0000000this is string example....wow!!!0000000";

   2 print str.strip(‘0’)

執行之後的結果

技術分享
this is string example....wow!!!
View Code

python strip() 方法