有行和行中有空格,所以我想摆脱空格只剩下字符串。
像'','',''这样的空格 我应该使用哪些代码删除空格?
Thnks
答案 0 :(得分:2)
st = " with, or, without , spaces ";
st = st.replace(" ","")
print(st)
with,or,without,spaces
答案 1 :(得分:0)
你可以使用
sys.stdout.write("something")
sys.stdout.write("without")
sys.stdout.write("spaces")
而不是
print "something", "without", "spaces"