有什么函数既可以去掉空格也能去掉tab?
在两侧的空白:
s = " \t a string example\t " s = s.strip()
右边的空白:
s = s.rstrip()
左边的空白:
s = s.lstrip()
也可以指定字符来去除:
s = s.strip(' \t\n\r')
上面的将会去掉在s左右的空白,\t,\n和\r字符.
s