String 字元/Sapce 去除多餘空格
- 從網頁或者資料庫擷取下來的文字資料,常會發生左邊或者右邊有多餘的空格
- Python 中可以使用下列幾個方法將它們去除:
- .lstrip() :去除文字左邊的空格
- .rstrip() :去除文字右邊的空格
- .strip() :去除文字左邊與右邊的空格
shaq = " Shaquille O'Neal "
print(shaq)
## Shaquille O'Neal
print(shaq.lstrip())
## Shaquille O'Neal
print(shaq.rstrip())
## Shaquille O'Neal
print(shaq.strip())
## Shaquille O'Neal