strx = "hello world ! this is Python" x=strx.replace(" ", "") print(x) print(strx) strx = strx.split(' ') strx = ''.join(strx) print(strx)
输出
helloworld!thisisPython hello world ! this is Python helloworld!thisisPython [Program finished]
strx = "hello world ! this is Python" x=strx.replace(" ", "") print(x) print(strx) strx = strx.split(' ') strx = ''.join(strx) print(strx)
输出
helloworld!thisisPython hello world ! this is Python helloworld!thisisPython [Program finished]