首页 > 代码库 > ex15
ex15
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。