如何让用户在我的 python 程序中编写将使用打开的“w”传输到文件中的文本?
我只知道如何使用 print 将文本写入单独的文档。但是,如果我想将输入写入文件,该怎么做呢?简而言之:让用户自己将文本写入单独的文档。
到目前为止,这是我的代码:
def main():
print ("This program let you create your own HTML-page")
name = input("Enter the name for your HTML-page (end it with .html): ")
outfile = open(name, "w")
code = input ("Enter your code here: ")
print ("This is the only thing getting written into the file", file=outfile)
main ()