所以说我有
x = "this string"
我正试图在不同的行上打印这两个单词。我想我需要以某种方式使用string.split()
,但我不确定如何。
答案 0 :(得分:8)
您可以使用:
print '\n'.join(x.split())
其中
x = 'this string'
x.split() # ['this', 'string']
答案 1 :(得分:2)
答案 2 :(得分:2)
x="this string"
for a in x.split():
print a