本质上,我希望用户输入中的每个新单词都在下一行,因此诸如“Hello World”之类的句子将显示为
"Hello"
"World"
这是我当前的脚本:
EnterString = input("Enter the first word of your sentence ")
e =(EnterString)
e2 =(e.split(" "))
print (e2)
这将给出结果:
['Hello', 'world']
如何让 Python 检测空格并相应地对齐单词?
提前致谢。