python去掉空格經常使用方式

前言: 處理字符串時常常要定製化去掉無用的空格,python 中要麼用存在的常規方法,或者用正則處理python 1.去掉左邊空格 string = " * it is blank space test * " print (string.lstrip()) result: * it is blank space test * 2.去掉右邊空格 string = " * it is bla
相關文章
相關標籤/搜索