题解 1196: 去掉空格

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1196: 去掉空格

摘要:解题思路:注意事项:参考代码:while True:     try:         s = input()         print(s.replace(' ', &#39……

编写题解 1196: 去掉空格

摘要:解题思路:注意事项:参考代码:while True:    try:        list1 = input().split()        for i in list1:            ……

1196一行解(Python)

摘要:解题思路:将空格替换为空('')注意事项:明确sys.stdin的用法参考代码:import sysfor line in sys.stdin :print(line.replace(……