python学习日记(笨办法) test16

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习日记(笨办法) test16相关的知识,希望对你有一定的参考价值。

 test16测试代码
#-*- coding: utf-8 -*-
from sys import argv

script , filename = argv
print  "We're gogning to erase %r ."  %  fliename
print  "If you don't want that, hit CTRL-C(^C)."
print  "If you want that ,hit RETURN."

#打开文件
target=open (filename,'w') 

#清空文件
target.truncate()

#输入三行内容
line1 = raw_input("line 1 :")
line2 = raw_input("line 2 :")
line3 = raw_input("line 3 :")

#将上面三行内容写入文件
target.write(line1)
target.write("\n")
target.write(line2)
target.write("\n")
target.write(line3)


以上是关于python学习日记(笨办法) test16的主要内容,如果未能解决你的问题,请参考以下文章

笨办法学 Python(第三版)习题 16: 读写文件

笨办法学习python之模块类对象

python 学习 “笨办法学python”(随书补充)

Python学习日记Python内建集合及操作

笨办法学习python3练习代码:argv参数变量与文件操作

Egret入门学习日记 --- 第一篇