参见英文答案 > Print new output on same line                                    7个

我有一个关于在Python 3中使用for循环在同一行上打印的问题.我搜索了答案,但我找不到任何相关的.

所以,我有这样的事情:

def function(variable):
some code here
return result
item = input('Enter a sentence: ')
while item != '':
split = item.split()
for word in split:
new_item = function(word)
print(new_item)
item = input('Enter a sentence: ')

当用户输入句子“短句”时,该函数应该对它做一些事情并且它应该打印在同一行上.

假设函数将’t’添加到每个单词的末尾,因此输出应为

在短期内判刑

但是,目前的输出是:

在
肖特
sentencet

如何轻松地在同一行上打印结果?或者我应该制作一个新的字符串

new_string = ''
new_string = new_string + new_item

它是迭代的,最后我打印new_string?

解决方法:

在打印功能中使用end参数

print(new_item, end=" ")

使用理解和加入还有另一种方法可以做到这一点.

print (" ".join([function(word) for word in split]))