#From the sys package, i'm importing the argv
from sys import argv
#Un packaging the arguments
script, filename = argv
#Print statements
print "We're going to erase %r." % filename
print "If you don't want that, hit CTRL-C (^C)."
print "If you do want that, hit RETURN."
#To accept whether or not we want to continue or not
raw_input("?")
print "Opening the file..."
# I am opening the file
target = open(filename)
print "Truncating the file. Goodbye!"
target.truncate()
print "Now i'm going to ask you for three lines."
line1 = raw_input("line 1: ")
line2 = raw_input("line 2: ")
line3 = raw_input("line 3: ")
print "I'm going to write these to the file."
x = "%r\n %r\n %r\n" % (line1, line2, line3)
target.write(x)
#This also works to write the files
# target.write ("%r\n%r\n%r\n" % (line1, line2, line3))
print "And finally, we close it."
target.close()
对于open(filename)
,我发现当我将脚本付诸实践时,我得到了相同的结果open(filename "w")
那么“w”的意义何在?因为我已经有了使用 target.write() 命令编写的函数!