删除字符串中的所有空格。
例如:输入asd af aa z67,则输出为asdafaaz67。
Python:
a = input() print(''.join(a.strip(' ').split()))