我正在尝试使用循环每行打印一个字符串。例如,如果字符串是'我需要练习',则字符串应该打印: 在' 需要 '\ n' 实践
到目前为止我的代码看起来像这样:
phrase=input('enter a phrase: ')
for char in phrase:
print (char, end ='')
if char == '':
print('\n')
但是,我的输出如下:
我需要练习
答案 0 :(得分:0)
只有replace
\n
的空格
phrase = input('输入短语:')
words = phrase.replace('','\ n')
注意replace的第一个参数中的空格。