strip()函数的目的是去除字符串中的首位符号
中间位置的符号不管用
In [68]: " Strip fuction ".strip()
Out[68]: 'Strip fuction'
In [72]: "\tStrip fuction\n".strip()
Out[72]: 'Strip fuction'
In [73]: "\tStrip \n fuction\n".strip()
Out[73]: 'Strip \n fuction'