我正在尝试使用 Python 制作一个小型文本创建器应用程序。该概念与普通文本创建器(例如记事本)相同。但是我很难让用户输入很多段落。到目前为止,我只能允许用户输入 2 个段落。有没有人可以帮助我?这是我的脚本:
print "Welcome to 'Python Flat Text Creator'."
print "Please enter the name of your file and its extension (.doc atau .txt)."
filename = raw_input("> ")
target = open(filename, 'w')
typeyourtext = raw_input("Type below: \n")
target.write(typeyourtext + "\n")
typeyourtext = raw_input("\n")
target.write(typeyourtext + "\n")
target.close()