题解列表

筛选

1031题 -一行流解决(Python代码)

摘要:将用replace函数将字符串中的所有空格去掉 ``` print(input().replace(" ","")[::-1]) ``` 上面的代码是下面的简写: ``` list =……