码迷,mamicode.com
首页 > 编程语言 > 详细

python学习日记(笨办法) test16

时间:2018-02-05 15:10:39      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:内容   argv   rom   ctr   python学习   raw_input   hat   学习   pen   

 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

标签:内容   argv   rom   ctr   python学习   raw_input   hat   学习   pen   

原文地址:http://blog.51cto.com/11820620/2068967

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!