您的位置:首页 > 编程语言 > Python开发

笨办法学Python学习笔记 练习16

2016-01-12 15:41 671 查看
from sys import argv
#运用argv函数打开指定文件
script, filename = argv
#Just print
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."

raw_input("?")

print "Opening the file..."
#以w模式打开文件
target = open(filename,'w')

print"Truncating the file. Goodbye!"
#清空文件内容
target.truncate()

print "Now I'm going to ask you for three lines."
#给line1,line2,line3赋值
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."
#将line1,line2,line3写入文件中
target.write(line1)
target.write("\n")
target.write(line2)
target.write("\n")
target.write(line3)
target.write("\n")

print "And finally, we close it."
#保存文件
target.close()


运行结果

原本文件的内容

运行之后文本的内容

python open的几种模式:

r:读取模式。(若模式值缺省,则默认为r模式)

w:读写模式。

a:写入模式。

b:二进制模式打开文件。(视频或者图片文件,必须用此模式打开,此模式可以和其他模式并用)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python 学习笔记