我正在尝试通过学习Python的艰难方式练习来学习一些编程。我正在通过编写自己的脚本自己做一些总结练习,但不幸的是我遇到了一些与打印文件有关的问题。
我希望用我的脚本实现:
我设法实现除最后一点之外的所有内容:打印新文件。我得到的只是终端窗口中的空白区域。代码如下所示:
v1 = raw_input("Specify which file to copy: ")
txt = open(v1).read()
print "This is the content of the file:"
print txt
v2 = raw_input("Choose a name for your new file, end it with txt")
nyfile = open(v2, "w+")
nyfile.write(txt)
nyfile.write(raw_input("Lets add some new text to the file: "))
txt2 = nyfile.read()
print txt2