如何在Python中一次打印一个单词?

时间:2018-03-02 22:39:31

标签: python string python-3.x loops

我正在尝试使用循环每行打印一个字符串。例如,如果字符串是'我需要练习',则字符串应该打印: 在' 需要 '\ n' 实践

到目前为止我的代码看起来像这样:

phrase=input('enter a phrase: ')
  for char in phrase:
     print (char, end ='')
  if char == '':
    print('\n')

但是,我的输出如下:

我需要练习

1 个答案:

答案 0 :(得分:0)

只有replace \n的空格

  

phrase = input('输入短语:')

     

words = phrase.replace('','\ n')

注意replace的第一个参数中的空格。