码迷,mamicode.com
首页 > 其他好文 > 详细

ex15

时间:2016-11-17 12:58:37      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:file   class   utf-8   type   import   input   rip   sse   rom   

 1 # -*-coding:utf-8 -*-
 2 from sys import argv
 3 
 4 script, filename =argv  #参数赋值
 5 
 6 txt = open(filename)  #txt变量为打开文件
 7 
 8 print ("Here‘s your file %r:" % filename) #在屏幕上提示您的文件名
 9 print ("make sure your type is right?")
10 makesure = input("Y/N\n>>>>")
11 
12 if makesure == "Y":
13   print (txt.read())
14   print ("you successed!")   #打开文件并在屏幕显示阅读
15   print ("need to close the txt?")
16   closeit = input("ok/no\n>>>>")
17   if closeit == "ok":
18    txt.close()
19   else:
20    print ("read it quickly!")
21    
22 
23 elif makesure == "N":
24   print ("Type the filename again:")  #提示再次输入您的文件名
25   file_again = input("\n>>>>")  #输入您的文件名
26   txt_again = open(file_again)  # 再次定义tex_again为打开您的文件
27   print (txt_again.read())   
28   print ("you successed!") 

 

ex15

标签:file   class   utf-8   type   import   input   rip   sse   rom   

原文地址:http://www.cnblogs.com/jiangzhipeng/p/6073234.html

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