輸入一個字符串,將這個字符串中全部的空格刪除python
輸入一個字符串code
輸出刪除空格後的字符串blog
i am a boy! you are a girl!
iamaboy!youareagirl!
ss=input() ss=ss.replace(' ', '') print(ss)