当前位置:  首页>> 技术小册>> Python合辑4-130个字符串操作示例

如何在 Python 中去除空格

  1. s = ' canada '
  2. print(s.rstrip()) # For whitespace on the right side use rstrip.
  3. print(s.lstrip()) # For whitespace on the left side lstrip.
  4. print(s.strip()) # For whitespace from both side.
  5. s = ' \t canada '
  6. print(s.strip('\t')) # This will strip any space, \t, \n, or \r characters from the left-hand side, right-hand side, or both sides of the string.

Output:

  1. canada
  2. canada
  3. canada
  4. canada

该分类下的相关小册推荐: